Example #1
0
 protected function findFlatPage($slug)
 {
     $flatPage = FlatPage::find()->where(['url' => 'blog'])->one();
     if (!isset($flatPage)) {
         throw new HttpException(404, Yii::t('app', 'The requested page does not exist.'));
     }
     return $flatPage;
 }
Example #2
0
 /**
 * Creates data provider instance with search query applied
 *
 * @param array $params
 *
 * @return ActiveDataProvider
 */
 public function search($params)
 {
     $query = FlatPage::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     $this->load($params);
     if (!$this->validate()) {
         // uncomment the following line if you do not want to any records when validation fails
         // $query->where('0=1');
         return $dataProvider;
     }
     $query->andFilterWhere(['id' => $this->id, 'created_by' => $this->created_by, 'updated_by' => $this->updated_by, 'created_at' => $this->created_at, 'updated_at' => $this->updated_at]);
     $query->andFilterWhere(['like', 'url', $this->url]);
     return $dataProvider;
 }
Example #3
0
 public function init()
 {
     $this->flatPageList = FlatPage::find()->all();
     parent::init();
 }
Example #4
0
 public function init()
 {
     $this->flatPageList = FlatPage::find()->where(['is_active' => true])->andWhere(['display_on_menu' => true])->all();
     parent::init();
 }