xiaowang/kirby/config/sections/mixins/search.php

20 lines
318 B
PHP
Raw Normal View History

2022-08-31 16:08:03 +02:00
<?php
use Kirby\Cms\App;
return [
'props' => [
/**
* Enable/disable the search in the sections
*/
'search' => function (bool $search = false): bool {
return $search;
}
],
'methods' => [
2022-12-19 16:26:24 +01:00
'searchterm' => function (): string|null {
2022-08-31 16:08:03 +02:00
return App::instance()->request()->get('searchterm');
}
]
];