Example #1
0
 public function actionView($post = '1')
 {
     $post = Html::encode($post);
     if (preg_match('/^\\+?\\d+$/', $post)) {
     } else {
         $post = 1;
     }
     // защита от ошибки
     $model = new Article();
     $d = 0;
     $db = \Yii::$app->db;
     $command = $db->createCommand("SELECT * FROM tbl_post WHERE id=" . $post);
     $model = $command->queryOne();
     $command = $db->createCommand("SELECT * FROM tbl_category WHERE id=" . $model['id']);
     // для вывода категории
     $categ = $command->queryOne();
     $model['content'] = Article::close_tags($model['content']);
     $this->view->registerJsFile('path/to/file');
     // тест явы для картинок
     $this->view->registerCssFile('path/to/file');
     // тест явы для картинок
     return $this->render('views', ['modelcat' => $categ, 'model' => $model]);
 }