6e1510b2
Administrator
firs page
|
1
2
3
4
5
6
7
8
9
|
<?php
use yii\widgets\Breadcrumbs;
use yii\widgets\Menu;
\frontend\assets\AdminAsset::register($this);
/* @var $content string */
$this->beginContent('@app/views/layouts/main.php');
?>
|
d8e2d677
Виталий
tokar commit
|
10
11
|
<div class="section-box admin-page">
|
51e0a262
Yarik
test
|
12
13
|
<div class="box-wr">
<div class="box-all">
|
d8e2d677
Виталий
tokar commit
|
14
15
16
|
<div class="login-right-column">
<div class="admin-my-page">Моя страница</div>
<?php
|
51e0a262
Yarik
test
|
17
18
|
echo Menu::widget([
'options' => [
|
d8e2d677
Виталий
tokar commit
|
19
|
'class' => 'menu-admin',
|
51e0a262
Yarik
test
|
20
|
],
|
d8e2d677
Виталий
tokar commit
|
21
|
'activeCssClass' => 'active-menu-admin',
|
51e0a262
Yarik
test
|
22
23
|
'items' => [
[
|
d8e2d677
Виталий
tokar commit
|
24
|
'label' => 'Учетные данные',
|
51e0a262
Yarik
test
|
25
26
27
|
'url' => ['accounts/general'],
],
[
|
51e0a262
Yarik
test
|
28
29
30
31
32
33
34
35
|
'label' => 'Контакты',
'url' => ['accounts/contacts'],
],
[
'label' => 'Услуги',
'url' => ['accounts/service'],
],
[
|
d8e2d677
Виталий
tokar commit
|
36
37
38
39
|
'label' => 'Трудовой стаж',
'url' => ['accounts/'],
],
[
|
51e0a262
Yarik
test
|
40
41
42
43
|
'label' => 'Дополнительные навыки',
'url' => ['accounts/add-skills'],
],
[
|
d8e2d677
Виталий
tokar commit
|
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
'label' => 'Описание',
'url' => ['accounts/'],
],
[
'label' => 'Команда',
'url' => ['accounts/'],
],
[
'label' => 'Вакансии',
'url' => ['accounts/'],
],
[
'label' => 'Ваши проекты',
'url' => ['accounts/'],
],
[
'label' => 'Портфолио',
|
fe41f4ed
Виталий
tokar commit
|
63
|
'url' => ['accounts/portfolio-create'],
|
51e0a262
Yarik
test
|
64
|
],
|
d8e2d677
Виталий
tokar commit
|
65
|
|
51e0a262
Yarik
test
|
66
|
[
|
d8e2d677
Виталий
tokar commit
|
67
|
'label' => 'Блог',
|
fe41f4ed
Виталий
tokar commit
|
68
|
'url' => ['accounts/blog-create'],
|
51e0a262
Yarik
test
|
69
70
71
|
],
[
'label' => 'Галерея',
|
98a795fb
Виталий
tokar commit
|
72
|
'url' => ['accounts/gallery-create'],
|
51e0a262
Yarik
test
|
73
|
],
|
bf9aa90f
Administrator
add Vitaliy's wid...
|
74
|
[
|
d8e2d677
Виталий
tokar commit
|
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
'label' => 'Сообщения',
'url' => ['accounts/'],
],
[
'label' => 'Уведомления о проектах',
'url' => ['accounts/'],
],
[
'label' => 'Закладки',
'url' => ['accounts/'],
],
[
'label' => 'Настройка аккаунта',
'url' => ['accounts/setting'],
],
[
|
bf9aa90f
Administrator
add Vitaliy's wid...
|
91
|
'label' => 'Выход',
|
d8e2d677
Виталий
tokar commit
|
92
|
'options' => ['class'=>'logout-li'],
|
bf9aa90f
Administrator
add Vitaliy's wid...
|
93
94
|
'url' => ['/site/logout']
],
|
d8e2d677
Виталий
tokar commit
|
95
96
97
98
99
|
// [
// 'label' => 'Общее',
// 'options' => ['class'=>'test'],
// 'url' => ['accounts/general'],
// ],
|
51e0a262
Yarik
test
|
100
101
|
],
]);
|
d8e2d677
Виталий
tokar commit
|
102
103
104
105
106
107
108
|
?>
</div>
<div class="login-left-column">
<?= $content ?>
</div>
|
51e0a262
Yarik
test
|
109
110
111
|
</div>
</div>
</div>
|
34ca0fa2
Administrator
firs page
|
112
|
|
6e1510b2
Administrator
firs page
|
113
|
<?php $this->endContent() ?>
|