/** * 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; }
/** * Finds the StaticPageTable model based on its primary key value. * If the model is not found, a 404 HTTP exception will be thrown. * @param integer $id * @return StaticPageTable the loaded model * @throws NotFoundHttpException if the model cannot be found */ protected function findModel($id) { if (($model = StaticPageTable::findOne($id)) !== null) { return $model; } else { throw new NotFoundHttpException('The requested page does not exist.'); } }
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; }