nouveau-theatre-de-besancon/site/controllers/search.php

14 lines
263 B
PHP
Raw Normal View History

2024-09-12 14:57:54 +02:00
<?php
return function ($site) {
$query = get('q');
$allEvents = page('programme')->children()->children();
2024-09-16 11:23:22 +02:00
$results = $allEvents->search($query, 'title|authors|categories|public');
2024-09-12 14:57:54 +02:00
return [
'query' => $query,
'results' => $results,
];
};