/
pashko
/
siec
Обзор
Документация
Войти
/
pashko
/
siec
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
frontend/controllers/NewsController.php
19 строк
463 B
Kokorin Pavel
news php content
16 июн 2020, 20:20
16 июн 2020, 20:20
39f8e1f
Код
Авторство
О чём код?
<?php namespace frontend\controllers; use yii\web\Controller; use common\models\Pages; use common\models\Blog; class NewsController extends Controller { public function actionIndex() { return $this->render('index', ['model' => Pages::findOne(['code' => 'blog'])]); } public function actionView($slug) { if ($model = Blog::findOne(['slug' => $slug])) { return $this->render('view', ['model' => $model]); } } }