/**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = StaticPageTable::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, 'status' => $this->status, 'position' => $this->position]);
     $query->andFilterWhere(['like', 'name', $this->name])->andFilterWhere(['like', 'content', $this->content])->andFilterWhere(['like', 'url', $this->url]);
     return $dataProvider;
 }
 /**
  * Creates a new StaticPageTable model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate()
 {
     if (!Yii::$app->user->can('static-page-table/create')) {
         Yii::$app->session->setFlash('error', 'Нет доступа!');
         return $this->redirect('/');
     }
     $model = new StaticPageTable();
     $model->position = StaticPageTable::find()->max('id') + 1;
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         return $this->redirect(['view', 'url' => $model->url]);
     } else {
         return $this->render('create', ['model' => $model]);
     }
 }
Exemple #3
0
 static function oneStaticPage()
 {
     $staticPage = StaticPageTable::find()->where(['status' => 1])->orderBy(['position' => SORT_ASC])->one();
     $pages = '<a href="' . Url::to(['/static-page-table/view', 'url' => $staticPage->url]) . '" class="nav-btn">' . mb_strtoupper($staticPage->name, 'UTF-8') . " " . FA::icon($staticPage->icon) . '<span></span></a>';
     return $pages;
 }