julienmonnerie/kirby/config/areas/site/dropdowns.php

22 lines
402 B
PHP
Raw Normal View History

2022-06-17 17:51:59 +02:00
<?php
$files = require __DIR__ . '/../files/dropdowns.php';
return [
2022-08-31 15:02:43 +02:00
'page' => [
'pattern' => 'pages/(:any)',
'options' => function (string $path) {
return Find::page($path)->panel()->dropdown();
}
],
'page.file' => [
'pattern' => '(pages/.*?)/files/(:any)',
'options' => $files['file']
],
'site.file' => [
'pattern' => '(site)/files/(:any)',
'options' => $files['file']
]
2022-06-17 17:51:59 +02:00
];