/**
* @param $slug
* @return string
* @throws NotFoundHttpException
*/
public function actionView($slug)
{
$model = Article::find()->where(['slug' => $slug])->one();
$category = ArticleCategory::find()->where(['id' => $model->category_id])->one();
//$img = ArticleAttachment::find()->where(['article_id' => $model->id])->all();
if (!$model) {
throw new NotFoundHttpException;
}
$viewFile = $model->view ?: 'view';
return $this->render($viewFile, ['model' => $model,'category' => $category]);
}
* @return string
* @throws NotFoundHttpException
*/
public function actionView($slug)
{
$model = Article::find()->where(['slug' => $slug])->one();
$category = ArticleCategory::find()->where(['id' => $model->category_id])->one();
//$img = ArticleAttachment::find()->where(['article_id' => $model->id])->all();
if (!$model) {
throw new NotFoundHttpException;
}
$viewFile = $model->view ?: 'view';
$args = $this->controller->bindActionParams($this, $params);
Yii::trace('Running action: ' . get_class($this->controller) . '::' . $this->actionMethod . '()', __METHOD__);
if (Yii::$app->requestedParams === null) {
Yii::$app->requestedParams = $args;
}
return call_user_func_array([$this->controller, $this->actionMethod], $args);
}
}
}
$result = null;
if ($runAction && $this->beforeAction($action)) {
// run the action
$result = $action->runWithParams($params);
$result = $this->afterAction($action, $result);
// call afterAction on modules
foreach ($modules as $module) {
/* @var $module Module */
$parts = $this->createController($route);
if (is_array($parts)) {
/* @var $controller Controller */
list($controller, $actionID) = $parts;
$oldController = Yii::$app->controller;
Yii::$app->controller = $controller;
$result = $controller->runAction($actionID, $params);
if ($oldController !== null) {
Yii::$app->controller = $oldController;
}
return $result;
}
$params = $this->catchAll;
unset($params[0]);
}
try {
Yii::trace("Route requested: '$route'", __METHOD__);
$this->requestedRoute = $route;
$result = $this->runAction($route, $params);
if ($result instanceof Response) {
return $result;
} else {
$response = $this->getResponse();
if ($result !== null) {
$response->data = $result;
try {
$this->state = self::STATE_BEFORE_REQUEST;
$this->trigger(self::EVENT_BEFORE_REQUEST);
$this->state = self::STATE_HANDLING_REQUEST;
$response = $this->handleRequest($this->getRequest());
$this->state = self::STATE_AFTER_REQUEST;
$this->trigger(self::EVENT_AFTER_REQUEST);
$this->state = self::STATE_SENDING_RESPONSE;
$response->send();
require(__DIR__ . '/../../common/config/base.php'),
require(__DIR__ . '/../../common/config/web.php'),
require(__DIR__ . '/../config/base.php'),
require(__DIR__ . '/../config/web.php')
);
(new yii\web\Application($config))->run();
$_GET = [
'slug' => 'kitano-viki-09',
];
$_SESSION = [
'__flash' => [],
];