julienmonnerie/kirby/config/areas/lab/drawers.php

30 lines
538 B
PHP
Raw Normal View History

2025-04-21 18:57:21 +02:00
<?php
2025-07-11 14:41:34 +02:00
use Kirby\Panel\Lab\Doc;
2025-04-21 18:57:21 +02:00
use Kirby\Panel\Lab\Docs;
return [
'lab.docs' => [
'pattern' => 'lab/docs/(:any)',
'load' => function (string $component) {
2025-07-11 14:41:34 +02:00
if (Docs::isInstalled() === false) {
2025-04-21 18:57:21 +02:00
return [
'component' => 'k-text-drawer',
'props' => [
'text' => 'The UI docs are not installed.'
]
];
}
return [
'component' => 'k-lab-docs-drawer',
'props' => [
'icon' => 'book',
'title' => $component,
2025-07-11 14:41:34 +02:00
'docs' => Doc::factory($component)->toArray()
2025-04-21 18:57:21 +02:00
]
];
},
],
];