Esempio n. 1
0
 /**
  * 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');
 }
Esempio n. 2
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = TextPages::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     $this->load($params);
     if (!$this->validate()) {
         // uncomment the following line if you do not want to return any records when validation fails
         // $query->where('0=1');
         return $dataProvider;
     }
     $query->andFilterWhere(['id' => $this->id]);
     $query->andFilterWhere(['like', 'name', $this->name])->andFilterWhere(['like', 'text', $this->text])->andFilterWhere(['like', 'url', $this->url]);
     return $dataProvider;
 }
Esempio n. 3
0
 /**
  * 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.');
     }
 }