56 lines
1.5 KiB
PHP
56 lines
1.5 KiB
PHP
|
<?php
|
||
|
|
||
|
use Kirby\Toolkit\Escape;
|
||
|
|
||
|
return [
|
||
|
'pages' => [
|
||
|
'label' => t('pages'),
|
||
|
'icon' => 'page',
|
||
|
'query' => function (string $query = null) {
|
||
|
$pages = site()
|
||
|
->index(true)
|
||
|
->search($query)
|
||
|
->filter('isReadable', true)
|
||
|
->limit(10);
|
||
|
|
||
|
$results = [];
|
||
|
|
||
|
foreach ($pages as $page) {
|
||
|
$results[] = [
|
||
|
'image' => $page->panel()->image(),
|
||
|
'text' => Escape::html($page->title()->value()),
|
||
|
'link' => $page->panel()->url(true),
|
||
|
'info' => Escape::html($page->id())
|
||
|
];
|
||
|
}
|
||
|
|
||
|
return $results;
|
||
|
}
|
||
|
],
|
||
|
'files' => [
|
||
|
'label' => t('files'),
|
||
|
'icon' => 'image',
|
||
|
'query' => function (string $query = null) {
|
||
|
$files = site()
|
||
|
->index(true)
|
||
|
->filter('isReadable', true)
|
||
|
->files()
|
||
|
->search($query)
|
||
|
->limit(10);
|
||
|
|
||
|
$results = [];
|
||
|
|
||
|
foreach ($files as $file) {
|
||
|
$results[] = [
|
||
|
'image' => $file->panel()->image(),
|
||
|
'text' => Escape::html($file->filename()),
|
||
|
'link' => $file->panel()->url(true),
|
||
|
'info' => Escape::html($file->id())
|
||
|
];
|
||
|
}
|
||
|
|
||
|
return $results;
|
||
|
}
|
||
|
]
|
||
|
];
|