Blame view

common/models/UserInfo.php 9.42 KB
1face72c   Yarik   test
1
2
  <?php
  
e8236f44   Yarik   test
3
      namespace common\models;
658d13d4   Administrator   09.02.16
4
  
e8236f44   Yarik   test
5
      use Yii;
d02fd466   Yarik   test
6
7
      use yii\behaviors\AttributeBehavior;
      use yii\db\ActiveRecord;
658d13d4   Administrator   09.02.16
8
  
1face72c   Yarik   test
9
      /**
e8236f44   Yarik   test
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
       * This is the model class for table "user_info".
       * @property integer $user_id
       * @property integer $view_count
       * @property string  $busy
       * @property string  $date_visit
       * @property string  $experience
       * @property string  $rank
       * @property string  $salary
       * @property string  $job
       * @property string  $location
       * @property string  $soft
       * @property integer $user_info_id
       * @property string  $guarantee
       * @property integer $contract
       * @property integer $estimate
       * @property integer $purchase
       * @property integer $delivery
       * @property double  $prepayment
       * @property string  $about
       * @property integer $type
d02fd466   Yarik   test
30
       * @property string  $geography
9cc08528   Yarik   test
31
       * @property integer $salary_currency
420d3dcd   Yarik   test
32
       * @property string $email
1face72c   Yarik   test
33
       */
e8236f44   Yarik   test
34
      class UserInfo extends \yii\db\ActiveRecord
1face72c   Yarik   test
35
      {
8f939a27   Administrator   add Vitaliy's wid...
36
  
e8236f44   Yarik   test
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
          // Константа обознащающая физическое лицо
          const USER_TYPE_FIZ = 1;
  
          // Константа обозначающая компанию
          const USER_TYPE_COMPANY = 2;
  
          // Константа обозначающая, что компания/физ.лицо свободно
          const USER_STATUS_FREE = 1;
  
          // Константа обозначающая, что компания/физ.лицо занято
          const USER_STATUS_BUSY = 2;
  
          // Константа обозначающая, что компания/физ.лицо хочет стать членом МФП
          const USER_MEMBER_FALSE = 1;
  
          // Константа обозначающая, что компания/физ.лицо не хочет стать членом МФП
          const USER_MEMBER_TRUE = 2;
  
          /**
           * @inheritdoc
           */
          public static function tableName()
          {
              return 'user_info';
          }
  
          /**
           * @inheritdoc
           */
          public function rules()
          {
              return [
                  [
3e86d3d1   Yarik   test
70
71
                      [
                          'city',
420d3dcd   Yarik   test
72
                          'email',
3e86d3d1   Yarik   test
73
74
75
76
                      ],
                      'required',
                  ],
                  [
e8236f44   Yarik   test
77
                      [
e8236f44   Yarik   test
78
79
                          'is_customer',
                          'is_freelancer',
9cc08528   Yarik   test
80
                          'salary_currency',
e8236f44   Yarik   test
81
82
83
84
                      ],
                      'integer',
                  ],
                  [
d02fd466   Yarik   test
85
86
87
88
                      [
                          'date_visit',
                          'geographies',
                      ],
e8236f44   Yarik   test
89
90
91
92
93
                      'safe',
                  ],
                  [
                      [
                          'soft',
e8236f44   Yarik   test
94
95
96
97
98
                          'about',
                          'city',
                          'country',
                          'image',
                          'poster',
e8236f44   Yarik   test
99
100
101
102
103
104
                      ],
                      'string',
                  ],
                  [
                      [ 'prepayment' ],
                      'number',
9d05331a   Yarik   test
105
                      'min' => 0,
d02fd466   Yarik   test
106
                      'max' => 100,
e8236f44   Yarik   test
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
                  ],
                  [
                      [ 'experience' ],
                      'integer',
                      'max' => date('Y'),
                      'min' => 1950,
                  ],
                  [
                      [ 'experience' ],
                      'default',
                      'value' => date('Y'),
                  ],
                  [
                      [
                          'rank',
                          'location',
                      ],
                      'string',
                      'max' => 50,
                  ],
                  [
                      [
e8236f44   Yarik   test
129
130
131
132
133
134
135
136
137
                          'job',
                      ],
                      'string',
                      'max' => 255,
                  ],
                  [
                      [
                          'busy',
                          'member',
f1f3595c   Yarik   test
138
139
140
141
                          'contract',
                          'estimate',
                          'purchase',
                          'delivery',
e8236f44   Yarik   test
142
143
144
145
                      ],
                      'boolean',
                  ],
                  [
d02fd466   Yarik   test
146
147
148
149
150
151
152
153
                      [
                          'view_count',
                          'busy',
                          'member',
                          'salary',
                          'guarantee',
                          'prepayment',
                      ],
e8236f44   Yarik   test
154
155
156
                      'default',
                      'value' => 0,
                  ],
f1f3595c   Yarik   test
157
                  [
d02fd466   Yarik   test
158
159
160
161
                      [
                          'salary',
                          'guarantee',
                      ],
f1f3595c   Yarik   test
162
163
164
                      'integer',
                      'min' => 0,
                  ],
5346fcf9   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
                  [
                      [
                          'social_vk',
                      ],
                      'match',
                      'pattern' => '/^(?:https?:\/\/)?(?:www\.)?vk\.com\/[\S]+\/?$/',
                  ],
                  [
                      [
                          'social_fb',
                      ],
                      'match',
                      'pattern' => '/^(?:https?:\/\/)?(?:www\.)?facebook\.com\/[\S]+\/?$/',
                  ],
                  [
                      [
                          'social_in',
                      ],
                      'match',
                      'pattern' => '/^(?:https?:\/\/)?(?:www\.)?linkedin\.com\/(?:pub|in)\/[\S]+\/?$/',
                  ],
                  [
                      [
                          'social_t',
                      ],
                      'match',
                      'pattern' => '/^(?:https?:\/\/)?(?:www\.)?twitter\.com\/[\S]+\/?$/',
                  ],
1c67655e   Yarik   test
193
194
195
196
197
198
199
                  [
                      [
                          'geographies',
                      ],
                      'default',
                      'value' => [],
                  ],
420d3dcd   Yarik   test
200
201
202
203
204
205
                  [
                      [
                          'email',
                      ],
                      'email',
                  ],
e8236f44   Yarik   test
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
              ];
          }
  
          public function getBusyText()
          {
              return $this->busy ? 'Занят' : 'Свободный';
          }
  
          public function getLastVisit()
          {
              return \Yii::$app->formatter->asRelativeTime(new \DateTime($this->date_visit));
          }
  
          /**
           * @inheritdoc
           */
          public function attributeLabels()
          {
              return [
9cc08528   Yarik   test
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
                  'user_id'         => Yii::t('app', 'User ID'),
                  'view_count'      => Yii::t('app', 'Количество просмотров'),
                  'busy'            => Yii::t('app', 'Статус'),
                  'date_visit'      => Yii::t('app', 'Дата визита'),
                  'experience'      => Yii::t('app', 'Опыт работы'),
                  'rank'            => Yii::t('app', 'Rank'),
                  'salary'          => Yii::t('app', 'Зарплата'),
                  'job'             => Yii::t('app', 'Место работы'),
                  'location'        => Yii::t('app', 'Место расположения'),
                  'soft'            => Yii::t('app', 'Работа с программами'),
                  'user_info_id'    => Yii::t('app', 'User Info ID'),
                  'guarantee'       => Yii::t('app', 'Гарантия качества работ'),
                  'contract'        => Yii::t('app', 'Работа по договору'),
                  'estimate'        => Yii::t('app', 'Предоставляете смету'),
                  'purchase'        => Yii::t('app', 'Делаете сами закупку материалов'),
                  'delivery'        => Yii::t('app', 'Занимаетесь сами доставкой материалов'),
                  'prepayment'      => Yii::t('app', 'Минимальная предоплата за работы'),
                  'about'           => Yii::t('app', 'О себе'),
                  'type'            => Yii::t('app', 'Is Default'),
                  'member'          => Yii::t('app', 'Членство в МФП'),
                  'alt_location'    => 'Город не в списке',
                  'country'         => Yii::t('app', 'Страна'),
                  'city'            => Yii::t('app', 'Город'),
                  'image'           => Yii::t('app', 'Аватар'),
                  'poster'          => Yii::t('app', 'Подложка'),
                  'social_vk'       => Yii::t('app', 'Vk.com'),
                  'social_fb'       => Yii::t('app', 'FaceBook.com'),
                  'social_in'       => Yii::t('app', 'LinkedIn.com'),
                  'social_t'        => Yii::t('app', 'Twitter.com'),
                  'geography'       => Yii::t('app', 'География работ'),
                  'geographies'     => Yii::t('app', 'География работ'),
                  'salary_currency' => Yii::t('app', 'Валюта'),
                  'is_customer'     => '',
                  'is_freelancer'   => '',
e8236f44   Yarik   test
259
260
261
  
              ];
          }
d02fd466   Yarik   test
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
  
          public function beforeSave($insert)
          {
              $this->geography = json_encode($this->geographies, JSON_UNESCAPED_UNICODE);
              return parent::beforeSave($insert);
          }
  
          public function getGeographies()
          {
              return json_decode($this->geography);
          }
  
          public function setGeographies($value)
          {
              $this->geographies = $value;
          }
420d3dcd   Yarik   test
278
  
1face72c   Yarik   test
279
      }