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

20 lines
314 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' => [
'searchterm' => function (): ?string {
return App::instance()->request()->get('searchterm');
}
]
];