Files
lichterei-web/kirby/config/sections/mixins/search.php
Bastian Allgeier 7d168aae58 Upgrade to 3.8.0
2022-10-06 10:11:54 +02:00

20 lines
318 B
PHP

<?php
use Kirby\Cms\App;
return [
'props' => [
/**
* Enable/disable the search in the sections
*/
'search' => function (bool $search = false): bool {
return $search;
}
],
'methods' => [
'searchterm' => function (): string|null {
return App::instance()->request()->get('searchterm');
}
]
];