12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- namespace app\controllers;
- use app\models\base\NewsTopic;
- use app\models\News;
- use yii\web\Controller;
- use yii\web\NotFoundHttpException;
- class VideoController extends Controller
- {
- //public $viewTheme = "dark";
- public function actionIndex($topic=NULL)
- {
- $topic_id = 128;
- return $this->render("index",["topic_id"=>$topic_id]);
- }
- /**
- * @param int $id
- * @return string
- */
- public function actionView(int $id):string {
- $model = $this->findModel($id);
- if(!$model instanceof News) throw new NotFoundHttpException("Новость не найдена");
- return $this->render('view',['model'=>$model]);
- }
- public function actionStoryslugView($storyslug):string
- {
- $model = News::find()->andWhere(['alias'=>$storyslug])->one();
- if(!$model instanceof News) throw new NotFoundHttpException("Новость не найдена");
- return $this->render('view',['model'=>$model]);
- }
- private function findModel($id)
- {
- return News::find()->andWhere(['id'=>$id])->one();
- }
- public function actionTopic($topic){
- $topic = NewsTopic::find()->andWhere(['url'=>$topic])->one();
- if(!$topic instanceof NewsTopic) throw new NotFoundHttpException("Страница не найдена");
- return $this->render("archive/index",["topic"=>$topic]);
- }
- }
|