PerformerController.php
3.21 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
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
<?php
namespace frontend\controllers;
use common\models\Blog;
use common\models\Fields;
use Yii;
use yii\data\ArrayDataProvider;
use yii\data\Pagination;
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);
$query = Blog::find(['user_id'=>$performer_id]);
$countQuery = clone $query;
$pagination = new Pagination(['totalCount' => $countQuery->count(),
'pageSize' => 5,
]);
$article = $query->offset($pagination->offset)
->limit($pagination->limit)
->all();
$blog = new ArrayDataProvider([
'allModels' => $article,
]);
return $this->render('blog-list',[
'user' => $user,
'blog' => $blog,
'pagination' => $pagination
]);
}
public function actionBlogView($performer_id, $link)
{
$user = User::findOne($performer_id);
$article = Blog::findOne(['link'=>$link,'user_id'=>$performer_id]);
return $this->render('blog-view',[
'user' => $user,
'article' =>$article,
]);
}
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
]);
}
}