Blame view

frontend/views/layouts/gallery.php 12.6 KB
eb7e82fb   Administrator   29.02.16
1
2
3
  <?php

  

  use yii\helpers\Html;

6a97773c   Administrator   01.03.16
4
  use yii\helpers\Url;

eb7e82fb   Administrator   29.02.16
5
6
7
8
9
10
11
12
13
14
15
16
  use yii\widgets\Breadcrumbs;

  use yii\widgets\Menu;

  

  \frontend\assets\AppAsset::register($this);

  /* @var $content string */

  $this->beginContent('@app/views/layouts/main.php');

  ?>

      <div class="section-box content">

          <div class="section-box-16" style="background: url('<?= $this->params['user']->userInfo->poster;?>') 50% no-repeat">

              <div class="box-wr">

                  <div class="box-all">

                      <div class="blog-buttons-wr style">

76f36646   Yarik   test
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
                          <?php

                              if($this->params[ 'user' ]->id != \Yii::$app->user->getId()) {

                                  // Offer project button

                                  if(!empty( $this->params[ 'type' ] ) && $this->params[ 'type' ] == 'customer') {

                                      echo Html::a('Предложить проект', [ '#' ], [

                                          'class'             => 'blog-buttons-offer',

                                          'data-performer-id' => $this->params[ 'user' ]->id,

                                      ]);

                                  }

                                  // Write message

                                  echo Html::a('Написать сообщение', Url::toRoute([

                                      'chat/message',

                                      'user_id' => $this->params[ 'user' ]->id,

                                  ]), [ 'class' => 'blog-buttons-write' ]);

                                  // Bookmarks

                                  if(!empty( \Yii::$app->user->identity )) {

                                      if($this->params[ 'user' ]->isBookmarked) {

                                          echo Html::a('Убрать из закладок', [ '#' ], [

                                              'class'   => 'get-list artbox_bookmark_remove_performer',

                                              'data-id' => $this->params[ 'user' ]->id,

                                          ]);

                                      } else {

                                          echo Html::a('Добавить в закладки', [ '#' ], [

                                              'class'   => 'get-list artbox_bookmark_add_performer',

                                              'data-id' => $this->params[ 'user' ]->id,

                                          ]);

                                      }

                                  }

                              }

                          ?>

eb7e82fb   Administrator   29.02.16
47
48
49
50
51
52
53
54
                      </div>

                  </div>

              </div>

          </div>

          <div class="section-box menu-content-wr">

              <div class="box-wr">

                  <div class="box-all">

                      <?php

76f36646   Yarik   test
55
56
57
                          echo Menu::widget([

                              'options'        => [

                                  'class' => 'menu-content',

eb7e82fb   Administrator   29.02.16
58
                              ],

76f36646   Yarik   test
59
60
61
62
63
64
65
66
67
68
69
70
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
                              'activeCssClass' => 'active-menu-content',

                              'items'          => [

                                  [

                                      'label' => 'Общее',

                                      'url'   => [

                                          'performer/common',

                                          'performer_id' => $this->params[ 'user' ]->id,

                                          'type' => (!empty($this->params['type']))?$this->params['type']:null,

                                      ],

                                  ],

                                  [

                                      'label' => 'Портфолио',

                                      'url'   => [

                                          'performer/portfolio',

                                          'performer_id' => $this->params[ 'user' ]->id,

                                          'type' => (!empty($this->params['type']))?$this->params['type']:null,

                                      ],

                                  ],

                                  [

                                      'label' => 'Заказанные работы',

                                      'url'   => [

                                          'performer/projects',

                                          'performer_id' => $this->params[ 'user' ]->id,

                                          'type' => (!empty($this->params['type']))?$this->params['type']:null,

                                      ],

                                  ],

                                  [

                                      'label' => 'Блог',

                                      'url'   => [

                                          'performer/blog-list',

                                          'performer_id' => $this->params[ 'user' ]->id,

                                          'type' => (!empty($this->params['type']))?$this->params['type']:null,

                                      ],

                                  ],

                                  [

                                      'label' => 'Мнения',

                                      'url'   => [

                                          'performer/review',

                                          'performer_id' => $this->params[ 'user' ]->id,

                                          'type' => (!empty($this->params['type']))?$this->params['type']:null,

                                      ],

                                  ],

                                  [

                                      'label' => 'Места работы',

                                      'url'   => [

                                          'performer/workplace',

                                          'performer_id' => $this->params[ 'user' ]->id,

                                          'type' => (!empty($this->params['type']))?$this->params['type']:null,

                                      ],

                                  ],

                                  [

                                      'label' => 'Галерея',

                                      'url'   => [

                                          'performer/gallery',

                                          'performer_id' => $this->params[ 'user' ]->id,

                                          'type' => (!empty($this->params['type']))?$this->params['type']:null,

                                      ],

                                  ],

eb7e82fb   Administrator   29.02.16
117
                              ],

76f36646   Yarik   test
118
                          ]);

eb7e82fb   Administrator   29.02.16
119
120
121
122
123
124
125
126
127
128
                      ?>

                  </div>

              </div>

          </div>

          <div class="section-box-20">

              <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
129
                                  <div class="performance-vacancy-sidebar-company-title style"><?=$this->params['user']->name?></div>

eb7e82fb   Administrator   29.02.16
130
131
132
                                  <div class="performance-vacancy-sidebar-company-job style">

                                      <ul>

                                          <li class="activejob">

76f36646   Yarik   test
133
134
135
136
137
138
139
140
141
                                              <?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
142
143
                                              <div class="sidebar-droped-wr style">

                                                  <ul>

76f36646   Yarik   test
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
                                                      <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
165
166
167
168
169
170
171
172
                                                  </ul>

                                              </div>

                                          </li>

                                      </ul>

                                  </div>

                                  <div class="performance-vacancy-sidebar-stars style">

                                      <div class="rating">

                                          <!--оценка-->

76f36646   Yarik   test
173
                                          <input type="hidden" class="val" value="<?= $this->params[ 'user' ]->userInfo->rating ?>"/>

eb7e82fb   Administrator   29.02.16
174
                                          <!--количество голосов-->

76f36646   Yarik   test
175
                                          <input type="hidden" class="votes" value="1"/>

eb7e82fb   Administrator   29.02.16
176
177
                                      </div>

                                  </div>

76f36646   Yarik   test
178
179
180
181
182
183
184
185
186
187
                                  <div class="performance-vacancy-sidebar-comm style"><?= count($this->params[ 'user' ]->comments) ?> мнений</div>

                                  <?php

                                      if($this->params[ 'user' ]->id != \Yii::$app->user->getId()) {

                                          echo Html::a('написать мнение', [

                                              'performer/review',

                                              'performer_id' => $this->params[ 'user' ]->id,

                                              'type'         => ( !empty( $this->params[ 'type' ] ) ) ? $this->params[ 'type' ] : NULL,

                                          ], [ 'class' => 'performance-vacancy-sidebar-write style' ]);

                                      }

                                  ?>

eb7e82fb   Administrator   29.02.16
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
                              </div>

                              <div class="performer-vacancy-sidebar-img style">

                                  <?= Html::img($this->params['user']->userInfo->image);?>

                              </div>

                          </div>

                      </div>

                  </div>

              </div>

          </div>

          <div class="section-box-21">

              <div class="box-wr">

                  <div class="box-all">

                      <?= $content ?>

                  </div>

              </div>

          </div>

      </div>

      <script>

          $('div.rating').rating({

              fx: 'full',

              readOnly: 'true',

              url: 'rating.php'

          });

      </script>

  

fbdb1f1c   Yarik   test
213
  <?php $this->endContent() ?>