/** * Displays homepage. * * @param null $text_page * @return mixed * @throws HttpException */ public function actionIndex($text_page = null) { if ($text_page && ($page = TextPages::findOne(['url' => $text_page]))) { return $this->staticPages($page); } return $this->render('index'); }
/** * Finds the TextPages model based on its primary key value. * If the model is not found, a 404 HTTP exception will be thrown. * @param integer $id * @return TextPages the loaded model * @throws NotFoundHttpException if the model cannot be found */ protected function findModel($id) { if (($model = TextPages::findOne($id)) !== null) { return $model; } else { throw new NotFoundHttpException('The requested page does not exist.'); } }