eb7e82fb
Administrator
29.02.16
|
1
2
|
<?php
|
76f36646
Yarik
test
|
3
4
5
6
|
use yii\helpers\Html;
use yii\helpers\Url;
use yii\widgets\Breadcrumbs;
use yii\widgets\Menu;
|
eb7e82fb
Administrator
29.02.16
|
7
|
|
76f36646
Yarik
test
|
8
9
10
|
\frontend\assets\AdminAsset::register($this);
/* @var $content string */
$this->beginContent('@app/views/layouts/main.php');
|
eb7e82fb
Administrator
29.02.16
|
11
12
|
?>
<div class="section-box content">
|
76f36646
Yarik
test
|
13
|
<div class="section-box-14" style="background: url('<?= $this->params[ 'company' ]->userInfo->poster; ?>') 50% no-repeat">
|
eb7e82fb
Administrator
29.02.16
|
14
15
|
<div class="box-wr">
<div class="box-all">
|
76f36646
Yarik
test
|
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
<?php
if($this->params[ 'company' ]->id != \Yii::$app->user->getId()) {
?>
<div class="performance-vacancy-call-back">
<div class="performance-vacancy-call-back-title">Оставьте заявку<br/>и мы вам перезвоним
</div>
<form class="callback" action="">
<div class="input-blocks-wrapper">
<label for="callbac_name">Имя</label>
<input id="callbac_name" type="text"/>
</div>
<div class="input-blocks-wrapper">
<label for="callbac_phone">Телефон</label>
<input id="callbac_phone" type="text"/>
</div>
<input id="callbac_submit" type="submit" value="Перезвонить мне"/>
</form>
<div class="performance-vacancy-call-back-conf">Гарантируем конфидециальность</div>
</div>
<?php
if(!empty( \Yii::$app->user->identity )) {
?>
<div class="performance-vacancy-add-favorite">
<?php
if($this->params[ 'company' ]->isBookmarked) {
echo Html::a('', [ '#' ], [
'class' => 'artbox_bookmark_remove_performer',
'data-id' => $this->params[ 'company' ]->id,
]);
} else {
echo Html::a('', [ '#' ], [
'class' => 'artbox_bookmark_add_performer',
'data-id' => $this->params[ 'company' ]->id,
]);
}
?>
</div>
<?php
}
}
?>
|
eb7e82fb
Administrator
29.02.16
|
60
61
62
63
64
65
66
|
</div>
</div>
</div>
<div class="section-box menu-content-wr">
<div class="box-wr">
<div class="box-all">
<?php
|
76f36646
Yarik
test
|
67
68
69
|
echo Menu::widget([
'options' => [
'class' => 'menu-content',
|
eb7e82fb
Administrator
29.02.16
|
70
|
],
|
76f36646
Yarik
test
|
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
'activeCssClass' => 'active-menu-content',
'items' => [
[
'label' => 'Общее',
'url' => [
'company/common',
'company_id' => $this->params[ 'company' ]->id,
'type' => ( !empty( $this->params[ 'type' ] ) ) ? $this->params[ 'type' ] : NULL,
],
],
[
'label' => 'Выполненные работы',
'url' => [
'company/portfolio',
'company_id' => $this->params[ 'company' ]->id,
'type' => ( !empty( $this->params[ 'type' ] ) ) ? $this->params[ 'type' ] : NULL,
],
'visible' => ( empty( $this->params[ 'type' ] ) || $this->params['type'] == 'implementer' ) ? true : false,
],
[
'label' => 'Заказанные работы',
'url' => [
'company/projects',
'company_id' => $this->params[ 'company' ]->id,
'type' => ( !empty( $this->params[ 'type' ] ) ) ? $this->params[ 'type' ] : NULL,
],
'visible' => ( !empty( $this->params[ 'type' ] ) && $this->params['type'] == 'customer' ) ? true : false,
],
[
'label' => 'Команда',
'url' => [
'company/team',
'company_id' => $this->params[ 'company' ]->id,
'type' => ( !empty( $this->params[ 'type' ] ) ) ? $this->params[ 'type' ] : NULL,
],
],
[
'label' => 'Вакансии',
'url' => [
'company/vacancy-list',
'company_id' => $this->params[ 'company' ]->id,
'type' => ( !empty( $this->params[ 'type' ] ) ) ? $this->params[ 'type' ] : NULL,
],
],
[
'label' => 'Блог',
'url' => [
'company/blog-list',
'company_id' => $this->params[ 'company' ]->id,
'type' => ( !empty( $this->params[ 'type' ] ) ) ? $this->params[ 'type' ] : NULL,
],
],
[
'label' => 'Мнения',
'url' => [
'company/review',
'company_id' => $this->params[ 'company' ]->id,
'type' => ( !empty( $this->params[ 'type' ] ) ) ? $this->params[ 'type' ] : NULL,
],
],
[
'label' => 'Галерея',
'url' => [
'company/gallery',
'company_id' => $this->params[ 'company' ]->id,
'type' => ( !empty( $this->params[ 'type' ] ) ) ? $this->params[ 'type' ] : NULL,
],
],
|
eb7e82fb
Administrator
29.02.16
|
139
|
],
|
76f36646
Yarik
test
|
140
|
]);
|
eb7e82fb
Administrator
29.02.16
|
141
142
143
144
145
146
147
148
149
150
|
?>
</div>
</div>
</div>
<div class="section-box-15">
<div class="box-wr">
<div class="box-all">
<div class="performer-vacancy-sidebar-left-wr gallery-page-sidebar">
<div class="performer-vacancy-sidebar-left">
<div class="performance-vacancy-sidebar-company-wr">
|
76f36646
Yarik
test
|
151
|
<div class="performance-vacancy-sidebar-company-title style"><?= $this->params[ 'company' ]->name ?></div>
|
eb7e82fb
Administrator
29.02.16
|
152
153
154
|
<div class="performance-vacancy-sidebar-company-job style">
<ul>
<li class="activejob">
|
76f36646
Yarik
test
|
155
156
157
158
159
160
161
162
163
|
<?php
if(!empty( $this->params[ 'type' ] ) && $this->params[ 'type' ] == 'implementer') {
echo Html::a('Исполнитель', Url::current([ 'type' => 'implementer' ]));
} elseif(!empty( $this->params[ 'type' ] ) && $this->params[ 'type' ] == 'customer') {
echo Html::a('Заказчик', Url::current([ 'type' => NULL ]));
} else {
echo Html::a('Исполнитель', Url::current([ 'type' => NULL ]));
}
?>
|
eb7e82fb
Administrator
29.02.16
|
164
165
|
<div class="sidebar-droped-wr style">
<ul>
|
76f36646
Yarik
test
|
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
|
<li>
<?php
if(!empty( $this->params[ 'type' ] ) && $this->params[ 'type' ] == 'implementer') {
echo Html::a('Заказчик', Url::current([ 'type' => 'customer' ]));
} elseif(!empty( $this->params[ 'type' ] ) && $this->params[ 'type' ] == 'customer') {
echo Html::a('Исполнитель', Url::current([ 'type' => NULL ]));
} else {
echo Html::a('Заказчик', Url::current([ 'type' => 'customer' ]));
}
?>
</li>
<li style="display: none">
<?php
if(!empty( $this->params[ 'type' ] ) && $this->params[ 'type' ] == 'implementer') {
echo Html::a('Исполнитель', Url::current([ 'type' => 'implementer' ]));
} elseif(!empty( $this->params[ 'type' ] ) && $this->params[ 'type' ] == 'customer') {
echo Html::a('Заказчик', Url::current([ 'type' => NULL ]));
} else {
echo Html::a('Исполнитель', Url::current([ 'type' => NULL ]));
}
?>
|
eb7e82fb
Administrator
29.02.16
|
187
188
189
190
191
192
193
194
|
</ul>
</div>
</li>
</ul>
</div>
<div class="performance-vacancy-sidebar-stars style">
<div class="rating">
<!--оценка-->
|
76f36646
Yarik
test
|
195
|
<input type="hidden" class="val" value="<?= $this->params[ 'company' ]->userInfo->rating ?>"/>
|
eb7e82fb
Administrator
29.02.16
|
196
|
<!--количество голосов-->
|
76f36646
Yarik
test
|
197
|
<input type="hidden" class="votes" value="1"/>
|
eb7e82fb
Administrator
29.02.16
|
198
199
|
</div>
</div>
|
76f36646
Yarik
test
|
200
201
202
203
204
205
206
207
208
209
|
<div class="performance-vacancy-sidebar-comm style"><?= count($this->params[ 'company' ]->comments) ?> мнений</div>
<?php
if($this->params[ 'company' ]->id != \Yii::$app->user->getId()) {
echo Html::a('написать мнение', [
'company/review',
'company_id' => $this->params[ 'company' ]->id,
'type' => ( !empty( $this->params[ 'type' ] ) ) ? $this->params[ 'type' ] : NULL,
], [ 'class' => 'performance-vacancy-sidebar-write style' ]);
}
?>
|
eb7e82fb
Administrator
29.02.16
|
210
211
|
</div>
<div class="performer-vacancy-sidebar-img style">
|
76f36646
Yarik
test
|
212
|
<?= Html::img($this->params[ 'company' ]->userInfo->image); ?>
|
eb7e82fb
Administrator
29.02.16
|
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
|
</div>
</div>
</div>
<div class="section-box-21">
<div class="box-wr">
<div class="box-all">
<?= $content ?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
|
76f36646
Yarik
test
|
228
229
230
231
232
|
$('div.rating').rating(
{
fx : 'full', readOnly : 'true', url : 'rating.php'
}
);
|
eb7e82fb
Administrator
29.02.16
|
233
|
</script>
|
fbdb1f1c
Yarik
test
|
234
|
<?php $this->endContent() ?>
|