24 lines
384 B
PHP
24 lines
384 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 {
|
||
|
|
if ($this->search() === true) {
|
||
|
|
return App::instance()->request()->get('searchterm') ?? null;
|
||
|
|
}
|
||
|
|
|
||
|
|
return null;
|
||
|
|
}
|
||
|
|
]
|
||
|
|
];
|