65 lines
3.3 KiB
PHP
65 lines
3.3 KiB
PHP
<aside class="main-sidebar">
|
|
<section class="sidebar">
|
|
|
|
<?= dmstr\widgets\Menu::widget(
|
|
[
|
|
'options' => ['class' => 'sidebar-menu tree', 'data-widget' => 'tree'],
|
|
'items' => [
|
|
[
|
|
'label' => 'Настройки', 'icon' => 'gears', 'url' => '#',
|
|
'items' => [
|
|
['label' => 'Статусы', 'icon' => 'anchor', 'url' => ['/settings/status']],
|
|
['label' => 'Доп. поля', 'icon' => 'file-text-o', 'url' => ['/settings/additional-fields']],
|
|
['label' => 'Должность', 'icon' => 'spotify', 'url' => ['/settings/position']],
|
|
['label' => 'Навыки', 'icon' => 'flask', 'url' => ['/settings/skill']],
|
|
]
|
|
],
|
|
|
|
['label' => 'Профили', 'icon' => 'users', 'url' => ['/card/user-card']],
|
|
['label' => 'Пректы', 'icon' => 'files-o', 'url' => ['/project/project']],
|
|
['label' => 'Компании', 'icon' => 'files-o', 'url' => ['/company/company']],
|
|
[
|
|
'label' => 'Hh.ru', 'icon' => 'user-circle', 'url' => '#',
|
|
'items' => [
|
|
['label' => 'Компании', 'icon' => 'building', 'url' => ['/hh/hh']],
|
|
['label' => 'Вакансии', 'icon' => 'user-md', 'url' => ['/hh/hh-job']],
|
|
],
|
|
]
|
|
|
|
/*['label' => 'Gii', 'icon' => 'file-code-o', 'url' => ['/gii']],
|
|
['label' => 'Debug', 'icon' => 'dashboard', 'url' => ['/debug']],
|
|
['label' => 'Login', 'url' => ['site/login'], 'visible' => Yii::$app->user->isGuest],
|
|
[
|
|
'label' => 'Some tools',
|
|
'icon' => 'share',
|
|
'url' => '#',
|
|
'items' => [
|
|
['label' => 'Gii', 'icon' => 'file-code-o', 'url' => ['/gii'],],
|
|
['label' => 'Debug', 'icon' => 'dashboard', 'url' => ['/debug'],],
|
|
[
|
|
'label' => 'Level One',
|
|
'icon' => 'circle-o',
|
|
'url' => '#',
|
|
'items' => [
|
|
['label' => 'Level Two', 'icon' => 'circle-o', 'url' => '#',],
|
|
[
|
|
'label' => 'Level Two',
|
|
'icon' => 'circle-o',
|
|
'url' => '#',
|
|
'items' => [
|
|
['label' => 'Level Three', 'icon' => 'circle-o', 'url' => '#',],
|
|
['label' => 'Level Three', 'icon' => 'circle-o', 'url' => '#',],
|
|
],
|
|
],
|
|
],
|
|
],
|
|
],
|
|
],*/
|
|
],
|
|
]
|
|
) ?>
|
|
|
|
</section>
|
|
|
|
</aside>
|