18 lines
249 B
PHP
18 lines
249 B
PHP
|
<?php
|
||
|
|
||
|
use Kirby\Cms\App;
|
||
|
|
||
|
return [
|
||
|
'search' => [
|
||
|
'pattern' => 'search',
|
||
|
'action' => function () {
|
||
|
return [
|
||
|
'component' => 'k-search-view',
|
||
|
'props' => [
|
||
|
'type' => App::instance()->request()->get('type'),
|
||
|
]
|
||
|
];
|
||
|
}
|
||
|
],
|
||
|
];
|