30a01994
Timur Kastemirov
blog
|
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
use yii\web\Controller;
use artbox\weblog\models\Article;
use yii\web\NotFoundHttpException;
/**
* User: timur
* Date: 26.01.18
* Time: 8:46
*/
class BlogController extends Controller
{
public function actionIndex()
{
|
30a01994
Timur Kastemirov
blog
|
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
|
'pagination' => [
'pageSize' => 5,
],
]
);
return $this->render(
'index',
[
'dataProvider' => $dataProvider,
]
);
}
public function actionArticle($id)
{
$model = $this->findModel($id);
return $this->render(
'view',
[
'article' => $model,
]
);
}
protected function findModel($id)
{
/**
* Some comment
*/
$model = Article::find()
->where(
[
'id' => $id
]
)
->with("lang")
->one();
if ( $model !== NULL) {
return $model;
}
else {
throw new NotFoundHttpException('The requested page does not exist.');
}
}
|
2309b955
Timur Kastemirov
blog categories &...
|
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
|
public function actionSearch(){
if( \Yii::$app->request->isPost ){
$req = \Yii::$app->request;
if (!empty($req->post("title"))){
$title = Html::encode($req->post("title"));
$query = Article::find()
->joinWith("lang")
->where(
[
'status' => true,
]
)
->andWhere(
[
"like", "lower(title)", $title
]
)
->orderBy("sort");
$dataProvider = new ActiveDataProvider(
[
'query' => $query,
'pagination' => [
'pageSize' => 5,
],
]
);
return $this->render(
'index',
[
'dataProvider' => $dataProvider,
]
);
}
}
return $this->redirect(Url::toRoute(['blog/index']));
}
public function actionCategory($id){
$query = Article::find()
->joinWith("categories.lang")
->where(
[
'blog_article.status' => true,
]
)
->andWhere(
[
"blog_category.id" => $id,
"blog_category.status" => true,
]
)
->orderBy("sort");
$dataProvider = new ActiveDataProvider(
[
'query' => $query,
'pagination' => [
'pageSize' => 5,
],
]
);
return $this->render(
'index',
[
'dataProvider' => $dataProvider,
]
);
}
|