index-shop/kirby/config/areas/search/views.php

18 lines
249 B
PHP
Raw Permalink Normal View History

2025-12-10 15:12:06 +01:00
<?php
use Kirby\Cms\App;
return [
'search' => [
'pattern' => 'search',
'action' => function () {
return [
'component' => 'k-search-view',
'props' => [
'type' => App::instance()->request()->get('type'),
]
];
}
],
];