Files
hocusfokus-web/kirby-baukasten-main/site/plugins/extended/index.php
KirbyCMS Deploy 0a8c107828 Initial commit
2026-04-15 11:50:31 +00:00

14 lines
270 B
PHP

<?php
use Kirby\Cms\App;
App::plugin('project/extended', []);
// helpers
if (!function_exists('icon')) {
function icon(string $type, array|string|null $class = null, array $attr = []): string
{
return snippet('icon', compact('type', 'class', 'attr'), true);
}
}