b95371cf
Yarik
test
|
1
2
|
<?php
|
588209fc
Yarik
test
|
3
|
namespace common\models;
|
b95371cf
Yarik
test
|
4
|
|
588209fc
Yarik
test
|
5
6
7
8
|
use Yii;
use yii\base\Model;
use yii\data\ActiveDataProvider;
use common\models\Team;
|
b95371cf
Yarik
test
|
9
10
|
/**
|
588209fc
Yarik
test
|
11
|
* TeamSearch represents the model behind the search form about `common\models\Team`.
|
b95371cf
Yarik
test
|
12
|
*/
|
588209fc
Yarik
test
|
13
|
class TeamSearch extends Team
|
b95371cf
Yarik
test
|
14
|
{
|
b95371cf
Yarik
test
|
15
|
|
588209fc
Yarik
test
|
16
|
public $user;
|
b95371cf
Yarik
test
|
17
|
|
588209fc
Yarik
test
|
18
|
public $department;
|
b95371cf
Yarik
test
|
19
|
|
588209fc
Yarik
test
|
20
|
public $experience_from_from;
|
b95371cf
Yarik
test
|
21
|
|
588209fc
Yarik
test
|
22
23
24
25
26
27
28
29
30
31
32
|
public $experience_from_to;
/**
* @inheritdoc
*/
public function rules()
{
return [
[
[
'team_id',
|
588209fc
Yarik
test
|
33
34
35
36
37
38
39
40
41
42
43
|
'department_id',
'user_add_id',
'experience_from',
'experience_from_from',
'experience_from_to',
],
'integer',
],
[
[
'experience_from_from',
|
588209fc
Yarik
test
|
44
45
|
'experience_from_to',
],
|
2cee8b86
Yarik
test
|
46
47
|
'integer',
'min' => 0,
|
588209fc
Yarik
test
|
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
],
[
[
'department',
'firstname',
'lastname',
'user',
'middlename',
'link',
'position',
'date_add',
'photo',
'country_id',
],
'safe',
],
];
|
b95371cf
Yarik
test
|
65
66
|
}
|
588209fc
Yarik
test
|
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
|
/**
* @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;
}
|
a02e2fdb
Yarik
test
|
101
102
|
$query->andWhere([ 'user_id' => \Yii::$app->user->getId() ]);
|
588209fc
Yarik
test
|
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
|
$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,
|
588209fc
Yarik
test
|
152
153
154
155
156
|
'department_id' => $this->department_id,
'date_add' => $this->date_add,
'user_add_id' => $this->user_add_id,
]);
|
2cee8b86
Yarik
test
|
157
158
159
160
161
162
163
164
|
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'),
]);
}
|
588209fc
Yarik
test
|
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
|
if(!empty( $this->link ) || $this->link === '0') {
$query->andFilterWhere([
$this->link ? '>' : '=',
'char_length(link)',
0,
]);
}
$query->andFilterWhere([
'like',
'firstname',
$this->firstname,
])
->andFilterWhere([
'like',
'lastname',
$this->lastname,
])
->andFilterWhere([
'like',
'middlename',
$this->middlename,
])
->andFilterWhere([
'like',
'position',
$this->position,
])
->andFilterWhere([
'like',
'photo',
$this->photo,
])
->andFilterWhere([
'like',
|
e4a014b8
Yarik
test
|
201
202
|
'LOWER(country_id)',
mb_strtolower($this->country_id),
|
588209fc
Yarik
test
|
203
204
205
206
207
|
])
->andFilterWhere([
'or',
[
'like',
|
e4a014b8
Yarik
test
|
208
209
|
'LOWER(lastname)',
mb_strtolower($this->user),
|
588209fc
Yarik
test
|
210
211
212
|
],
[
'like',
|
e4a014b8
Yarik
test
|
213
214
|
'LOWER(firstname)',
mb_strtolower($this->user),
|
588209fc
Yarik
test
|
215
216
217
|
],
[
'like',
|
e4a014b8
Yarik
test
|
218
219
|
'LOWER(middlename)',
mb_strtolower($this->user),
|
588209fc
Yarik
test
|
220
221
222
223
|
],
])
->andFilterWhere([
'like',
|
e4a014b8
Yarik
test
|
224
225
|
'LOWER(department.name)',
mb_strtolower($this->department),
|
588209fc
Yarik
test
|
226
227
228
229
|
]);
return $dataProvider;
}
|
b95371cf
Yarik
test
|
230
|
}
|