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.
101 lines
2.7 KiB
101 lines
2.7 KiB
2 months ago
|
<?php
|
||
|
|
||
|
use Kirby\Cms\App;
|
||
|
use Kirby\Toolkit\I18n;
|
||
|
|
||
|
return [
|
||
|
'system' => [
|
||
|
'pattern' => 'system',
|
||
|
'action' => function () {
|
||
|
$kirby = App::instance();
|
||
|
$system = $kirby->system();
|
||
|
$updateStatus = $system->updateStatus();
|
||
|
$license = $system->license();
|
||
|
|
||
|
$environment = [
|
||
|
[
|
||
|
'label' => $license->status()->label(),
|
||
|
'value' => $license->label(),
|
||
|
'theme' => $license->status()->theme(),
|
||
|
'icon' => $license->status()->icon(),
|
||
|
'dialog' => $license->status()->dialog()
|
||
|
],
|
||
|
[
|
||
|
'label' => $updateStatus?->label() ?? I18n::translate('version'),
|
||
|
'value' => $kirby->version(),
|
||
|
'link' => $updateStatus?->url() ??
|
||
|
'https://github.com/getkirby/kirby/releases/tag/' . $kirby->version(),
|
||
|
'theme' => $updateStatus?->theme(),
|
||
|
'icon' => $updateStatus?->icon() ?? 'info'
|
||
|
],
|
||
|
[
|
||
|
'label' => 'PHP',
|
||
|
'value' => phpversion(),
|
||
|
'icon' => 'code'
|
||
|
],
|
||
|
[
|
||
|
'label' => I18n::translate('server'),
|
||
|
'value' => $system->serverSoftware() ?? '?',
|
||
|
'icon' => 'server'
|
||
|
]
|
||
|
];
|
||
|
|
||
|
$exceptions = $updateStatus?->exceptionMessages() ?? [];
|
||
|
|
||
|
$plugins = $system->plugins()->values(function ($plugin) use (&$exceptions) {
|
||
|
$authors = $plugin->authorsNames();
|
||
|
$updateStatus = $plugin->updateStatus();
|
||
|
$version = $updateStatus?->toArray() ?? $plugin->version() ?? '–';
|
||
|
|
||
|
if ($updateStatus !== null) {
|
||
|
$exceptions = array_merge($exceptions, $updateStatus->exceptionMessages());
|
||
|
}
|
||
|
|
||
|
return [
|
||
|
'author' => empty($authors) ? '–' : $authors,
|
||
|
'license' => $plugin->license() ?? '–',
|
||
|
'name' => [
|
||
|
'text' => $plugin->name() ?? '–',
|
||
|
'href' => $plugin->link(),
|
||
|
],
|
||
|
'version' => $version,
|
||
|
];
|
||
|
});
|
||
|
|
||
|
$security = $updateStatus?->messages() ?? [];
|
||
|
|
||
|
if ($kirby->option('debug', false) === true) {
|
||
|
$security[] = [
|
||
|
'id' => 'debug',
|
||
|
'text' => I18n::translate('system.issues.debug'),
|
||
|
'link' => 'https://getkirby.com/security/debug'
|
||
|
];
|
||
|
}
|
||
|
|
||
|
if ($kirby->environment()->https() !== true) {
|
||
|
$security[] = [
|
||
|
'id' => 'https',
|
||
|
'text' => I18n::translate('system.issues.https'),
|
||
|
'link' => 'https://getkirby.com/security/https'
|
||
|
];
|
||
|
}
|
||
|
|
||
|
return [
|
||
|
'component' => 'k-system-view',
|
||
|
'props' => [
|
||
|
'environment' => $environment,
|
||
|
'exceptions' => $kirby->option('debug') === true ? $exceptions : [],
|
||
|
'plugins' => $plugins,
|
||
|
'security' => $security,
|
||
|
'urls' => [
|
||
|
'content' => $system->exposedFileUrl('content'),
|
||
|
'git' => $system->exposedFileUrl('git'),
|
||
|
'kirby' => $system->exposedFileUrl('kirby'),
|
||
|
'site' => $system->exposedFileUrl('site')
|
||
|
]
|
||
|
]
|
||
|
];
|
||
|
}
|
||
|
],
|
||
|
];
|