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