6310a439
Administrator
firs page
|
1
|
<?php
|
5f49082a
Yarik
test
|
2
3
|
namespace frontend\controllers;
|
84ebac3d
Yarik
test
|
4
|
use common\models\Blog;
|
5f49082a
Yarik
test
|
5
|
use common\models\CompanyInfo;
|
ea09d15d
Yarik
test
|
6
|
use common\models\Employment;
|
5f49082a
Yarik
test
|
7
|
use common\models\Fields;
|
ea09d15d
Yarik
test
|
8
|
use common\models\Gallery;
|
5f49082a
Yarik
test
|
9
10
11
|
use common\models\Job;
use common\models\Language;
use common\models\Payment;
|
7eb29439
Yarik
test
|
12
13
|
use common\models\Portfolio;
use common\models\PortfolioSpecialization;
|
84ebac3d
Yarik
test
|
14
|
use common\models\Project;
|
5f49082a
Yarik
test
|
15
16
17
|
use common\models\Specialization;
use common\models\UserPayment;
use common\models\UserSpecialization;
|
ea09d15d
Yarik
test
|
18
|
use common\models\Vacancy;
|
5f49082a
Yarik
test
|
19
20
21
22
23
24
25
|
use Yii;
use common\models\User;
use common\models\UserInfo;
use yii\filters\AccessControl;
use yii\web\Controller;
use yii\web\NotFoundHttpException;
|
6310a439
Administrator
firs page
|
26
|
|
5f49082a
Yarik
test
|
27
28
29
30
31
|
/**
* Site controller
*/
class AccountsController extends Controller
{
|
6e1510b2
Administrator
firs page
|
32
|
|
5f49082a
Yarik
test
|
33
|
public $layout = 'admin';
|
6e1510b2
Administrator
firs page
|
34
|
|
5f49082a
Yarik
test
|
35
36
37
38
39
40
41
42
43
44
45
|
public function behaviors()
{
return [
'access' => [
'class' => AccessControl::className(),
'rules' => [
[
//'actions' => ['cabinet','change-password', 'bookmarks', 'projects'],
'allow' => true,
'roles' => [ '@' ],
],
|
6310a439
Administrator
firs page
|
46
47
|
],
],
|
5f49082a
Yarik
test
|
48
49
|
];
}
|
6310a439
Administrator
firs page
|
50
|
|
5f49082a
Yarik
test
|
51
52
|
public function actionCabinet()
{
|
6310a439
Administrator
firs page
|
53
|
|
5f49082a
Yarik
test
|
54
|
$user = $this->findUser(Yii::$app->user->identity->id);
|
6310a439
Administrator
firs page
|
55
|
|
5f49082a
Yarik
test
|
56
|
$langs = Language::getActiveLanguages();
|
6310a439
Administrator
firs page
|
57
|
|
5f49082a
Yarik
test
|
58
59
60
61
62
63
64
65
66
|
if($user->load(Yii::$app->request->post()) && $user->save()) {
$user->userInfo->load(Yii::$app->request->post());
$user->userInfo->save();
Fields::saveFieldData(Yii::$app->request->post('Fields'), $user->id, $user::className(), 'ru');
return $this->render('cabinet', [
'user' => $user,
'user_info' => $user->userInfo,
'langs' => $langs,
]);
|
2ff00662
Administrator
firs page
|
67
|
|
5f49082a
Yarik
test
|
68
|
} else {
|
70abf3e7
Administrator
add field v.1
|
69
|
|
5f49082a
Yarik
test
|
70
71
72
73
74
|
return $this->render('cabinet', [
'user' => $user,
'user_info' => $user->userInfo,
'langs' => $langs,
]);
|
6310a439
Administrator
firs page
|
75
|
|
5f49082a
Yarik
test
|
76
|
}
|
6310a439
Administrator
firs page
|
77
|
|
70abf3e7
Administrator
add field v.1
|
78
|
}
|
6310a439
Administrator
firs page
|
79
|
|
5f49082a
Yarik
test
|
80
81
82
83
|
public function actionBookmarks()
{
return $this->render('bookmarks');
}
|
6310a439
Administrator
firs page
|
84
|
|
5f49082a
Yarik
test
|
85
|
public function actionGeneral()
|
51e0a262
Yarik
test
|
86
|
{
|
5f49082a
Yarik
test
|
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
|
$user_info = UserInfo::find()
->where([ 'user_id' => \Yii::$app->user->getId() ])
->one();
$company_info = CompanyInfo::find()
->where([ 'user_id' => \Yii::$app->user->getId() ])
->one();
$user = \Yii::$app->user->identity;
if(empty( $user_info )) {
$user_info = new UserInfo([ 'user_id' => \Yii::$app->user->getId() ]);
}
if(empty( $company_info )) {
$company_info = new CompanyInfo([ 'user_id' => \Yii::$app->user->getId() ]);
}
$post = \Yii::$app->request->post();
if(!empty( $post )) {
$user_info->load($post);
$company_info->load($post);
$user->load($post);
if($user_info->save() && $user->save() && $company_info->save()) {
\Yii::$app->session->setFlash('userinfoupdate', 'Информация успешно обновлена');
} else {
\Yii::$app->session->setFlash('userinfoupdate', 'Ошибка обновления. Проверьте форму');
}
}
return $this->render('general', [
'user_info' => $user_info,
'user' => $user,
'company_info' => $company_info,
]);
|
51e0a262
Yarik
test
|
116
|
}
|
5f49082a
Yarik
test
|
117
|
|
84ebac3d
Yarik
test
|
118
119
120
121
122
123
124
125
126
127
|
public function actionBlog()
{
return $this->render('blog');
}
public function actionBlogCreate()
{
$blog = new Blog();
$post = \Yii::$app->request->post();
if($blog->load($post) && $blog->save()) {
|
ea09d15d
Yarik
test
|
128
129
130
131
|
return $this->redirect([
'blog-update',
[ 'id' => $blog->blog_id ],
]);
|
84ebac3d
Yarik
test
|
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
|
} else {
return $this->render('_blog_form', [ 'blog' => $blog ]);
}
}
public function actionBlogUpdate($id)
{
$blog = Blog::findOne($id);
$post = \Yii::$app->request->post();
if($blog->load($post) && $blog->save()) {
return $this->redirect('blog');
} else {
return $this->render('_blog_form', [ 'blog' => $blog ]);
}
}
|
5f49082a
Yarik
test
|
148
|
public function actionPortfolio()
|
51e0a262
Yarik
test
|
149
|
{
|
7eb29439
Yarik
test
|
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
|
return $this->render('portfolio');
}
public function actionPortfolioCreate()
{
$portfolio = new Portfolio();
$specialization = Specialization::find()
->select([
'specialization_name',
'specialization_id',
])
->indexBy('specialization_id')
->asArray()
->column();
$post = \Yii::$app->request->post();
|
84ebac3d
Yarik
test
|
165
|
if(!empty( $post )) {
|
7eb29439
Yarik
test
|
166
167
168
169
170
171
172
173
|
$portfolio->load($post);
$portfolio->validate();
if(!$portfolio->hasErrors()) {
$portfolio->save();
$portfolio->unlinkAll('specializations', true);
foreach($portfolio->specializationInput as $one_specialization) {
$portfolio->link('specializations', Specialization::findOne($one_specialization));
}
|
84ebac3d
Yarik
test
|
174
|
return $this->redirect('portfolio');
|
7eb29439
Yarik
test
|
175
176
|
}
}
|
84ebac3d
Yarik
test
|
177
178
179
180
|
return $this->render('_portfolio_form', [
'portfolio' => $portfolio,
'specialization' => $specialization,
]);
|
7eb29439
Yarik
test
|
181
|
}
|
5f49082a
Yarik
test
|
182
|
|
7eb29439
Yarik
test
|
183
184
185
186
187
188
189
190
191
192
193
194
|
public function actionPortfolioUpdate($id)
{
$portfolio = Portfolio::findOne($id);
$specialization = Specialization::find()
->select([
'specialization_name',
'specialization_id',
])
->indexBy('specialization_id')
->asArray()
->column();
$post = \Yii::$app->request->post();
|
84ebac3d
Yarik
test
|
195
|
if(!empty( $post )) {
|
7eb29439
Yarik
test
|
196
197
198
199
200
201
202
203
|
$portfolio->load($post);
$portfolio->validate();
if(!$portfolio->hasErrors()) {
$portfolio->save();
$portfolio->unlinkAll('specializations', true);
foreach($portfolio->specializationInput as $one_specialization) {
$portfolio->link('specializations', Specialization::findOne($one_specialization));
}
|
84ebac3d
Yarik
test
|
204
|
return $this->redirect('portfolio');
|
7eb29439
Yarik
test
|
205
206
|
}
}
|
84ebac3d
Yarik
test
|
207
208
209
210
|
return $this->render('_portfolio_form', [
'portfolio' => $portfolio,
'specialization' => $specialization,
]);
|
51e0a262
Yarik
test
|
211
|
}
|
5f49082a
Yarik
test
|
212
213
214
215
216
|
/**
* $user User
*/
public function actionSetting()
|
51e0a262
Yarik
test
|
217
|
{
|
5f49082a
Yarik
test
|
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
|
$user = \Yii::$app->user->identity;
$post = \Yii::$app->request->post('User');
if(!empty( $post )) {
if(empty( $post[ 'new_password' ] )) {
$user->addError('new_password', 'Введите новый пароль');
} else {
$user->new_password = $post[ 'new_password' ];
}
if(empty( $post[ 'old_password' ] )) {
$user->addError('old_password', 'Введите новый пароль');
} else {
$user->old_password = $post[ 'old_password' ];
}
if(empty( $post[ 'password_reply' ] ) || $post[ 'password_reply' ] !== $post[ 'new_password' ]) {
$user->addError('password_reply', 'Неправильный повтор пароля');
} else {
$user->password_reply = $post[ 'password_reply' ];
}
if(!$user->hasErrors()) {
if($user->validatePassword($user->old_password)) {
$user->setPassword($user->new_password);
$user->generateAuthKey();
if($user->save()) {
\Yii::$app->session->setFlash('passwordupdate', 'Пароль успешно обновлен');
}
} else {
$user->addError('old_password', 'Неправильный старый пароль');
}
}
|
51e0a262
Yarik
test
|
247
|
}
|
5f49082a
Yarik
test
|
248
|
return $this->render('setting', [ 'user' => $user ]);
|
51e0a262
Yarik
test
|
249
|
}
|
51e0a262
Yarik
test
|
250
|
|
5f49082a
Yarik
test
|
251
252
253
254
255
256
257
|
public function actionContacts()
{
$user_info = UserInfo::find()
->where([ 'user_id' => \Yii::$app->user->getId() ])
->one();
if(empty( $user_info )) {
$user_info = new UserInfo([ 'user_id' => \Yii::$app->user->getId() ]);
|
51e0a262
Yarik
test
|
258
|
}
|
5f49082a
Yarik
test
|
259
260
261
262
|
if(!empty( \Yii::$app->request->post() )) {
Fields::saveFieldData(Yii::$app->request->post('Fields'), \Yii::$app->user->identity->id, User::className(), 'ru');
$user_info->load(\Yii::$app->request->post());
$user_info->save();
|
51e0a262
Yarik
test
|
263
|
}
|
5f49082a
Yarik
test
|
264
265
266
267
268
269
270
271
272
273
|
return $this->render('contacts', [ 'user_info' => $user_info ]);
}
public function actionService()
{
$user_info = UserInfo::find()
->where([ 'user_id' => \Yii::$app->user->getId() ])
->one();
if(empty( $user_info )) {
$user_info = new UserInfo([ 'user_id' => \Yii::$app->user->getId() ]);
|
51e0a262
Yarik
test
|
274
|
}
|
5f49082a
Yarik
test
|
275
276
277
278
279
280
281
282
283
|
$post = \Yii::$app->request->post();
if(!empty( $post )) {
$user_info->load($post);
$user_info->save();
$user_specialization_values = [ ];
$user_payment_values = [ ];
UserSpecialization::deleteAll([ 'user_id' => \Yii::$app->user->getId() ]);
UserPayment::deleteAll([ 'user_id' => \Yii::$app->user->getId() ]);
foreach($post[ 'UserSpecialization' ][ 'specialization_id' ] as $index => $value) {
|
7eb29439
Yarik
test
|
284
285
286
|
$user_specialization_values[] = (new UserSpecialization([
'user_id' => \Yii::$app->user->getId(),
'specialization_id' => $value,
|
5f49082a
Yarik
test
|
287
288
289
|
]))->save();
}
foreach($post[ 'UserPayment' ][ 'payment_id' ] as $index => $value) {
|
7eb29439
Yarik
test
|
290
291
292
|
$user_payment_values[] = (new UserPayment([
'user_id' => \Yii::$app->user->getId(),
'payment_id' => $value,
|
5f49082a
Yarik
test
|
293
|
]))->save();
|
51e0a262
Yarik
test
|
294
295
|
}
}
|
5f49082a
Yarik
test
|
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
|
$user_specialization = UserSpecialization::find()
->where([ 'user_id' => \Yii::$app->user->getId() ])
->select([ 'specialization_id' ])
->column();
$user_payment = UserPayment::find()
->where([ 'user_id' => \Yii::$app->user->getId() ])
->select([ 'payment_id' ])
->column();
$user_specialization_input = new UserSpecialization([ 'user_id' => \Yii::$app->user->getId() ]);
$user_payment_input = new UserPayment([ 'user_id' => \Yii::$app->user->getId() ]);
$specialization = Specialization::find()
->select([
'specialization_name',
'specialization_id',
])
->indexBy('specialization_id')
->asArray()
->column();
$payment = Payment::find()
->select([
'name',
'payment_id',
])
->indexBy('payment_id')
->asArray()
->column();
return $this->render('service', [
'user_info' => $user_info,
'specialization' => $specialization,
'user_specialization' => $user_specialization,
'user_specialization_input' => $user_specialization_input,
'payment' => $payment,
'user_payment' => $user_payment,
'user_payment_input' => $user_payment_input,
]);
|
51e0a262
Yarik
test
|
331
|
}
|
51e0a262
Yarik
test
|
332
|
|
5f49082a
Yarik
test
|
333
334
|
public function actionAddSkills()
{
|
766bd93b
Yarik
test
|
335
|
$user = \Yii::$app->user->identity;
|
7eb29439
Yarik
test
|
336
|
if(!empty( \Yii::$app->request->post() )) {
|
766bd93b
Yarik
test
|
337
338
|
Fields::saveFieldData(Yii::$app->request->post('Fields'), \Yii::$app->user->identity->id, User::className(), 'ru');
}
|
7eb29439
Yarik
test
|
339
|
return $this->render('add-skills', [ 'user' => $user ]);
|
f6a2a0d5
Yarik
test
|
340
|
}
|
51e0a262
Yarik
test
|
341
|
|
5f49082a
Yarik
test
|
342
343
344
345
346
347
348
349
350
|
public function actionDescription()
{
$user_info = UserInfo::find()
->where([ 'user_id' => \Yii::$app->user->getId() ])
->one();
if(empty( $user_info )) {
$user_info = new UserInfo([ 'user_id' => \Yii::$app->user->getId() ]);
}
$post = \Yii::$app->request->post();
|
7eb29439
Yarik
test
|
351
|
if(!empty( $post )) {
|
5f49082a
Yarik
test
|
352
353
|
$user_info->load($post);
$user_info->save();
|
eacb83cc
Yarik
test
|
354
|
}
|
5f49082a
Yarik
test
|
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
|
return $this->render('description', [ 'user_info' => $user_info ]);
}
public function actionEmployment()
{
$post = \Yii::$app->request->post();
if(!empty( $post )) {
$job = [ ];
for($i = 0; $i < count($post[ 'Job' ]); $i++) {
$job[ $i ] = new Job([
'user_id' => \Yii::$app->user->getId(),
'current' => 0,
]);
}
if(Job::loadMultiple($job, $post)) {
$job[ 0 ]->current = 1;
if(Job::validateMultiple($job)) {
Job::deleteAll([ 'user_id' => \Yii::$app->user->getId() ]);
foreach($job as $onejob) {
$onejob->save(false);
}
|
eacb83cc
Yarik
test
|
376
377
|
}
}
|
5f49082a
Yarik
test
|
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
|
} else {
$job = Job::find()
->where([ 'user_id' => \Yii::$app->user->getId() ])
->orderBy([ 'current' => SORT_DESC ])
->all();
if(empty( $job )) {
$job[] = new Job([
'user_id' => \Yii::$app->user->getId(),
'current' => 0,
]);
}
if(!$job[ 0 ]->current) {
array_unshift($job, new Job([
'user_id' => \Yii::$app->user->getId(),
'current' => 1,
]));
}
|
eacb83cc
Yarik
test
|
395
|
}
|
5f49082a
Yarik
test
|
396
|
return $this->render('employment', [ 'job' => $job ]);
|
e9013fc3
Yarik
test
|
397
|
}
|
51e0a262
Yarik
test
|
398
|
|
5f49082a
Yarik
test
|
399
400
401
402
|
public function actionProjects()
{
return $this->render('projects');
}
|
6310a439
Administrator
firs page
|
403
|
|
84ebac3d
Yarik
test
|
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
|
public function actionProjectsCreate()
{
$project = new Project();
$specialization = Specialization::find()
->select([
'specialization_name',
'specialization_id',
])
->indexBy('specialization_id')
->asArray()
->column();
$payment = Payment::find()
->select([
'name',
'payment_id',
])
->indexBy('payment_id')
->asArray()
->column();
|
aa182b5c
Yarik
test
|
423
424
425
426
427
428
429
430
431
|
$projects = Project::find()
->select([
'name',
'project_id',
])
->where([ 'user_id' => \Yii::$app->user->getId() ])
->indexBy('project_id')
->asArray()
->column();
|
84ebac3d
Yarik
test
|
432
|
$post = \Yii::$app->request->post();
|
aa182b5c
Yarik
test
|
433
|
if(!empty( $post )) {
|
84ebac3d
Yarik
test
|
434
435
436
437
438
439
|
$project->load($post);
$project->validate();
if(!$project->hasErrors()) {
$project->save();
$project->unlinkAll('specializations', true);
foreach($project->specializationInput as $one_specialization) {
|
aa182b5c
Yarik
test
|
440
|
$project->link('specializations', Specialization::findOne($one_specialization));
|
84ebac3d
Yarik
test
|
441
442
443
|
}
$project->unlinkAll('payments', true);
foreach($project->paymentInput as $one_payment) {
|
aa182b5c
Yarik
test
|
444
|
$project->link('payments', Payment::findOne($one_payment));
|
84ebac3d
Yarik
test
|
445
|
}
|
ea09d15d
Yarik
test
|
446
447
448
449
|
return $this->redirect([
'projects-update',
'id' => $project->project_id,
]);
|
84ebac3d
Yarik
test
|
450
451
|
}
}
|
aa182b5c
Yarik
test
|
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
|
return $this->render('_projects_form', [
'project' => $project,
'specialization' => $specialization,
'payment' => $payment,
'projects' => $projects,
]);
}
public function actionProjectsUpdate($id)
{
$project = Project::findOne($id);
$specialization = Specialization::find()
->select([
'specialization_name',
'specialization_id',
])
->indexBy('specialization_id')
->asArray()
->column();
$payment = Payment::find()
->select([
'name',
'payment_id',
])
->indexBy('payment_id')
->asArray()
->column();
$projects = Project::find()
->select([
'name',
'project_id',
])
->where([ 'user_id' => \Yii::$app->user->getId() ])
->andWhere([
'not',
[ 'project_id' => $project->project_id ],
])
->indexBy('project_id')
->asArray()
->column();
$post = \Yii::$app->request->post();
if(!empty( $post )) {
$project->load($post);
$project->validate();
if(!$project->hasErrors()) {
$project->save();
$project->unlinkAll('specializations', true);
foreach($project->specializationInput as $one_specialization) {
$project->link('specializations', Specialization::findOne($one_specialization));
}
$project->unlinkAll('payments', true);
foreach($project->paymentInput as $one_payment) {
$project->link('payments', Payment::findOne($one_payment));
}
return $this->render('_projects_form', [
'project' => $project,
'specialization' => $specialization,
'payment' => $payment,
'projects' => $projects,
]);
//return $this->redirect('projects');
}
}
return $this->render('_projects_form', [
'project' => $project,
'specialization' => $specialization,
'payment' => $payment,
'projects' => $projects,
]);
|
84ebac3d
Yarik
test
|
521
522
|
}
|
5f49082a
Yarik
test
|
523
524
|
public function actionGallery()
{
|
e9013fc3
Yarik
test
|
525
|
|
5f49082a
Yarik
test
|
526
|
}
|
6310a439
Administrator
firs page
|
527
|
|
ea09d15d
Yarik
test
|
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
|
public function actionGalleryCreate()
{
$gallery = new Gallery();
$user = \Yii::$app->user->identity;
$post = \Yii::$app->request->post();
if($gallery->load($post) && $gallery->save()) {
Fields::saveFieldData(Yii::$app->request->post('Fields'), \Yii::$app->user->identity->id, User::className(), 'ru');
return $this->redirect([
'gallery-update',
'id' => $gallery->gallery_id,
]);
} else {
return $this->render('_gallery_form', [
'gallery' => $gallery,
'user' => $user,
]);
}
}
public function actionGalleryUpdate($id)
{
$gallery = Gallery::findOne($id);
$user = \Yii::$app->user->identity;
$post = \Yii::$app->request->post();
if($gallery->load($post) && $gallery->save()) {
Fields::saveFieldData(Yii::$app->request->post('Fields'), \Yii::$app->user->identity->id, User::className(), 'ru');
return $this->redirect([
'gallery-update',
'id' => $gallery->gallery_id,
]);
} else {
return $this->render('_gallery_form', [
'gallery' => $gallery,
'user' => $user,
]);
}
}
public function actionVacancy()
{
$this->render('vacancy');
}
public function actionVacancyCreate()
{
$vacancy = new Vacancy();
$employment = Employment::find()
->select([
'name',
'employment_id',
])
->indexBy('employment_id')
->asArray()
->column();
$post = \Yii::$app->request->post();
if(!empty($post)) {
$vacancy->load($post);
$vacancy->validate();
if(!$vacancy->hasErrors()) {
$vacancy->save();
Fields::saveFieldData(Yii::$app->request->post('Fields'), $vacancy->vacancy_id, Vacancy::className(), 'ru');
$vacancy->unlinkAll('employments', true);
foreach($vacancy->employmentInput as $one_employment) {
$vacancy->link('employments', Employment::findOne($one_employment));
}
return $this->redirect(['vacancy-update', 'id' => $vacancy->vacancy_id]);
}
}
return $this->render('_vacancy_form', [
'vacancy' => $vacancy,
'employment' => $employment,
]);
}
public function actionVacancyUpdate($id)
{
$vacancy = Vacancy::findOne($id);
$employment = Employment::find()
->select([
'name',
'employment_id',
])
->indexBy('employment_id')
->asArray()
->column();
$post = \Yii::$app->request->post();
if(!empty($post)) {
$vacancy->load($post);
$vacancy->validate();
if(!$vacancy->hasErrors()) {
$vacancy->save();
Fields::saveFieldData(Yii::$app->request->post('Fields'), $vacancy->vacancy_id, Vacancy::className(), 'ru');
$vacancy->unlinkAll('employments', true);
foreach($vacancy->employmentInput as $one_employment) {
$vacancy->link('employments', Employment::findOne($one_employment));
}
return $this->redirect(['vacancy-update', 'id' => $vacancy->vacancy_id]);
}
}
return $this->render('_vacancy_form', [
'vacancy' => $vacancy,
'employment' => $employment,
]);
}
|
5f49082a
Yarik
test
|
633
634
635
|
public function actionGetForm($lastindex)
{
return $this->renderAjax('_job_form', [ 'index' => $lastindex + 1 ]);
|
6310a439
Administrator
firs page
|
636
|
}
|
6310a439
Administrator
firs page
|
637
|
|
5f49082a
Yarik
test
|
638
639
640
641
642
643
644
645
|
/**
* @param $id
*
* @return User
* @throws NotFoundHttpException
*/
protected function findUser($id)
{
|
6310a439
Administrator
firs page
|
646
|
|
5f49082a
Yarik
test
|
647
648
649
650
651
652
|
if($model = User::findOne([ "id" => $id ])) {
return $model;
} else {
throw new NotFoundHttpException('The requested page does not exist.');
}
}
|
6310a439
Administrator
firs page
|
653
|
|
5f49082a
Yarik
test
|
654
|
}
|