14 lines
270 B
PHP
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);
|
|
}
|
|
}
|