示例#1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Addenda::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, 'NO_ADDENDA' => $this->NO_ADDENDA, 'ORDRE_AFFICHAGE' => $this->ORDRE_AFFICHAGE]);
     $query->andFilterWhere(['like', 'NO_INSCRIPTION', $this->NO_INSCRIPTION])->andFilterWhere(['like', 'CODE_LANGUE', $this->CODE_LANGUE])->andFilterWhere(['like', 'CHAMP_INUTILISE_1', $this->CHAMP_INUTILISE_1])->andFilterWhere(['like', 'CHAMP_INUTILISE_2', $this->CHAMP_INUTILISE_2])->andFilterWhere(['like', 'TEXTE', $this->TEXTE]);
     return $dataProvider;
 }
示例#2
0
 /**
  * Finds the Addenda model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Addenda the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Addenda::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }