You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
641 B
27 lines
641 B
<?php
|
|
|
|
use Kirby\Cms\App;
|
|
use Kirby\Cms\Find;
|
|
|
|
return [
|
|
'page' => [
|
|
'pattern' => 'pages/(:any)',
|
|
'action' => fn (string $path) => Find::page($path)->panel()->view()
|
|
],
|
|
'page.file' => [
|
|
'pattern' => 'pages/(:any)/files/(:any)',
|
|
'action' => function (string $id, string $filename) {
|
|
return Find::file('pages/' . $id, $filename)->panel()->view();
|
|
}
|
|
],
|
|
'site' => [
|
|
'pattern' => 'site',
|
|
'action' => fn () => App::instance()->site()->panel()->view()
|
|
],
|
|
'site.file' => [
|
|
'pattern' => 'site/files/(:any)',
|
|
'action' => function (string $filename) {
|
|
return Find::file('site', $filename)->panel()->view();
|
|
}
|
|
],
|
|
];
|
|
|