PerformerController.php
2.46 KB
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
<?php
namespace frontend\controllers;
use common\models\Fields;
use Yii;
use yii\helpers\ArrayHelper;
use yii\web\Controller;
use common\models\User;
/**
* Site controller
*/
class PerformerController extends Controller
{
public $layout = 'performer';
public $user;
/**
* @inheritdoc
*/
public function actions()
{
return [
'error' => [
'class' => 'yii\web\ErrorAction',
],
'captcha' => [
'class' => 'yii\captcha\CaptchaAction',
'fixedVerifyCode' => YII_ENV_TEST ? 'testme' : null,
],
];
}
public function actionIndex()
{
$this->redirect('site/index');
}
public function actionCommon($performer_id)
{
$user = User::findOne($performer_id);
$educations = Fields::getData($user->id,$user->className(),'education');
$phones = Fields::getData($user->id,$user->className(),'phone');
$sites = Fields::getData($user->id,$user->className(),'site');
$soft = implode(', ',ArrayHelper::getColumn(Fields::getData($user->id,$user->className(),'soft'), 'soft'));
return $this->render('common',[
'user' => $user,
'educations' => $educations,
'phones' => $phones,
'sites' => $sites,
'soft' => $soft
]);
}
public function actionPortfolio($performer_id)
{
$user = User::findOne($performer_id);
return $this->render('portfolio',[
'user' => $user
]);
}
public function actionBlogList($performer_id)
{
$user = User::findOne($performer_id);
return $this->render('blog-list',[
'user' => $user
]);
}
public function actionBlogView(/*$performer_id, $article_id*/)
{
return $this->render('blog-view');
}
public function actionReview($performer_id)
{
$user = User::findOne($performer_id);
return $this->render('review',[
'user' => $user
]);
}
public function actionWorkplace($performer_id)
{
$user = User::findOne($performer_id);
return $this->render('workplace',[
'user' => $user
]);
}
public function actionGallery($performer_id)
{
$user = User::findOne($performer_id);
$this->layout = 'gallery';
return $this->render('gallery',[
'user' => $user
]);
}
}