dataarchiteces/private/site/plugins/kirby-password-guard/snippets/panel-icon.php
2026-02-09 17:05:41 +01:00

15 lines
541 B
PHP

<?php
$name ??= null;
$panelIcons = svg($kirby->root('kirby') . '/panel/dist/img/icons.svg');
if ($panelIcons && $name) {
if (preg_match('/<symbol[^>]*id="icon-' . $name . '"[^>]*viewBox="(.*?)"[^>]*>(.*?)<\/symbol>/s', $panelIcons, $matches)) {
if (preg_match('/<use href="#icon-(.*?)"[^>]*?>/s', $matches[2], $use)) {
return icon($use[1]);
}
echo '<svg class="k-icon" data-type="' . $name . '" xmlns="http://www.w3.org/2000/svg" viewBox="' . $matches[1] . '">' . $matches[2] . '</svg>';
}
}