1
0
Files
re_capitulating_queer/kirby/config/areas/site/dropdowns.php
Philip Wagner 78b6c0d381 init
2024-08-31 10:01:49 +02:00

22 lines
402 B
PHP

<?php
$files = require __DIR__ . '/../files/dropdowns.php';
return [
'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']
]
];