world-game/kirby/config/areas/lab/drawers.php

37 lines
732 B
PHP
Raw Normal View History

2026-01-13 10:21:41 +01:00
<?php
use Kirby\Panel\Lab\Doc;
use Kirby\Panel\Lab\Docs;
use Kirby\Panel\Lab\Responses;
return [
'lab.docs' => [
'pattern' => 'lab/docs/(:any)',
'load' => function (string $component) {
if (Docs::isInstalled() === false) {
return [
'component' => 'k-text-drawer',
'props' => [
'text' => 'The UI docs are not installed.'
]
];
}
$doc = Doc::factory($component);
return [
'component' => 'k-lab-docs-drawer',
'props' => [
'icon' => 'book',
'title' => $component,
'docs' => $doc->toArray()
]
];
},
],
'lab.errors' => [
'pattern' => 'lab/errors/(:any?)',
'load' => fn (string|null $type = null) => Responses::errorResponseByType($type)
],
];