26 lines
605 B
PHP
26 lines
605 B
PHP
<?php
|
|
|
|
use Kirby\Panel\Dropdown;
|
|
|
|
$files = require __DIR__ . '/../files/dropdowns.php';
|
|
|
|
return [
|
|
'changes' => [
|
|
'pattern' => 'changes',
|
|
'options' => fn () => Dropdown::changes()
|
|
],
|
|
'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']
|
|
]
|
|
];
|