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
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
|
'department_id',
'user_add_id',
'experience_from',
'experience_from_from',
'experience_from_to',
],
'integer',
],
[
[
'experience_from_from',
],
'default',
'value' => 0,
],
[
[
'experience_from_to',
],
'default',
'value' => 100,
],
[
[
'department',
'firstname',
'lastname',
'user',
'middlename',
'link',
'position',
'date_add',
'photo',
'country_id',
],
'safe',
],
];
|
b95371cf
Yarik
test
|
71
72
|
}
|
588209fc
Yarik
test
|
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
|
/**
* @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
|
107
108
|
$query->andWhere([ 'user_id' => \Yii::$app->user->getId() ]);
|
588209fc
Yarik
test
|
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
152
153
154
155
156
157
|
$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
|
158
159
160
161
162
163
164
165
166
|
'department_id' => $this->department_id,
'date_add' => $this->date_add,
'user_add_id' => $this->user_add_id,
]);
$query->andFilterWhere([
'between',
'experience_from',
$this->experience_from_to ? ( date('Y') - $this->experience_from_to ) : ( date('Y') - 100 ),
|
d36bdac6
Administrator
17.02.16
|
167
|
$this->experience_from_from ? ( date('Y') - $this->experience_from_from ) : date('Y'),
|
588209fc
Yarik
test
|
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
|
]);
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',
'country_id',
$this->country_id,
])
->andFilterWhere([
'or',
[
'like',
'lastname',
$this->user,
],
[
'like',
'firstname',
$this->user,
],
[
'like',
'middlename',
$this->user,
],
])
->andFilterWhere([
'like',
'department.name',
$this->department,
]);
return $dataProvider;
}
|
b95371cf
Yarik
test
|
234
|
}
|