pages = $pages; } public function behaviors(): array { return [ 'access' => [ 'class' => AccessControl::class, 'rules' => [ [ 'actions' => ['view'], 'allow' => true, 'roles' => ['Pages'], ], [ 'actions' => ['preview'], 'allow' => true, 'roles' => ['PagesManagement'], ], [ // all the action are accessible to admin 'allow' => true, 'roles' => ['admin'], ], ], ], ]; } /** * @param $id * @return mixed * @throws NotFoundHttpException * @internal param string $slug */ public function actionView($id) { if (!$page = $this->pages->find($id)) { throw new NotFoundHttpException('The requested page does not exist.'); } return $this->render('view', [ 'page' => $page, ]); } public function actionPreview($id) { if (!$page = $this->pages->findPreview($id)) { throw new NotFoundHttpException('The requested page does not exist.'); } return $this->render('view', [ 'page' => $page, ]); } }