Blame view

common/models/TeamSearch.php 7.11 KB
eb7e82fb   Administrator   29.02.16
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
  <?php

  

      namespace common\models;

  

      use Yii;

      use yii\base\Model;

      use yii\data\ActiveDataProvider;

      use common\models\Team;

  

      /**

       * TeamSearch represents the model behind the search form about `common\models\Team`.

       */

      class TeamSearch extends Team

      {

  

          public $user;

  

          public $department;

  

          public $experience_from_from;

  

          public $experience_from_to;

  

          /**

           * @inheritdoc

           */

          public function rules()

          {

              return [

                  [

                      [

                          'team_id',

                          'department_id',

                          'user_add_id',

                          'experience_from',

                          'experience_from_from',

                          'experience_from_to',

                      ],

                      'integer',

                  ],

                  [

                      [

                          'experience_from_from',

                          'experience_from_to',

                      ],

                      'integer',

                      'min' => 0,

                  ],

                  [

                      [

                          'department',

                          'firstname',

                          'lastname',

                          'user',

                          'middlename',

                          'link',

                          'position',

                          'date_add',

                          'photo',

                          'country_id',

                      ],

                      'safe',

                  ],

              ];

          }

  

          /**

           * @inheritdoc

           */

          public function scenarios()

          {

              // bypass scenarios() implementation in the parent class

              return Model::scenarios();

          }

  

          /**

           * Creates data provider instance with search query applied

           *

           * @param array $params

           *

           * @return ActiveDataProvider

           */

          public function search($params)

          {

              $query = Team::find();

  

              // add conditions that should always apply here

  

              $dataProvider = new ActiveDataProvider([

                  'query' => $query,

              ]);

  

              $this->load($params);

  

              if(!$this->validate()) {

                  // uncomment the following line if you do not want to return any records when validation fails

                  // $query->where('0=1');

                  return $dataProvider;

              }

  

              $query->andWhere([ 'user_id' => \Yii::$app->user->getId() ]);

  

              $query->joinWith(Department::tableName());

  

              $dataProvider->setSort([

                  'attributes' => [

                      'team_id',

                      'position',

                      'country_id',

                      'user'            => [

                          'asc'  => [

                              'lastname'   => SORT_ASC,

                              'firstname'  => SORT_ASC,

                              'middlename' => SORT_ASC,

                          ],

                          'desc' => [

                              'lastname'   => SORT_DESC,

                              'firstname'  => SORT_DESC,

                              'middlename' => SORT_DESC,

                          ],

                      ],

                      'link'            => [

                          'asc'  => [

                              'link' => SORT_DESC,

                          ],

                          'desc' => [

                              'link' => SORT_ASC,

                          ],

                      ],

                      'department'      => [

                          'asc'  => [

                              Department::tableName() . '.name' => SORT_ASC,

                          ],

                          'desc' => [

                              Department::tableName() . '.name' => SORT_DESC,

                          ],

                      ],

                      'experience_from' => [

                          'asc'  => [

                              'experience_from' => SORT_DESC,

                          ],

                          'desc' => [

                              'experience_from' => SORT_ASC,

                          ],

                      ],

                  ],

              ]);

  

              // grid filtering conditions

              $query->andFilterWhere([

                  'team_id'       => $this->team_id,

f717e203   Yarik   test
152
                  'team.department_id' => $this->department,

eb7e82fb   Administrator   29.02.16
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
                  'date_add'      => $this->date_add,

                  'user_add_id'   => $this->user_add_id,

              ]);

  

              if(!empty($this->experience_from_to) || !empty($this->experience_from_from)) {

                  $query->andFilterWhere([

                      'between',

                      'experience_from',

                      $this->experience_from_to ? ( date('Y') - $this->experience_from_to ) : ( date('Y') - 100 ),

                      $this->experience_from_from ?  ( date('Y') - $this->experience_from_from )  : date('Y'),

                  ]);

              }

  

              if(!empty( $this->link ) || $this->link === '0') {

                  $query->andFilterWhere([

                      $this->link ? '>' : '=',

                      'char_length(link)',

                      0,

                  ]);

              }

816e328e   Yarik   test
173
              

eb7e82fb   Administrator   29.02.16
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
              $query->andFilterWhere([

                  'like',

                  'firstname',

                  $this->firstname,

              ])

                    ->andFilterWhere([

                        'like',

                        'lastname',

                        $this->lastname,

                    ])

                    ->andFilterWhere([

                        'like',

                        'middlename',

                        $this->middlename,

                    ])

                    ->andFilterWhere([

                        'like',

816e328e   Yarik   test
191
192
                        'LOWER(position)',

                        mb_strtolower($this->position),

eb7e82fb   Administrator   29.02.16
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
                    ])

                    ->andFilterWhere([

                        'like',

                        'photo',

                        $this->photo,

                    ])

                    ->andFilterWhere([

                        'like',

                        'LOWER(country_id)',

                        mb_strtolower($this->country_id),

                    ])

                    ->andFilterWhere([

                        'or',

                        [

                            'like',

                            'LOWER(lastname)',

                            mb_strtolower($this->user),

                        ],

                        [

                            'like',

                            'LOWER(firstname)',

                            mb_strtolower($this->user),

                        ],

                        [

                            'like',

                            'LOWER(middlename)',

                            mb_strtolower($this->user),

                        ],

eb7e82fb   Administrator   29.02.16
221
222
223
224
225
                    ]);

  

              return $dataProvider;

          }

      }