blob: d3325ef960a0be4d7d36396188f02faf686197ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php call_template('skeleton', ['pageTitle' => __('admin.pageTitle')], function () {
call_template('navigation/side_links', ['links' => [
[
'icon' => 'settings-outline',
'label' => __('globalSettings.category.instance'),
'href' => '/admin/settings/instance'
], [
'icon' => 'extension-outline',
'label' => __('admin.plugins.pageTitle'),
'href' => '/admin/plugins'
]
]]);
});
|