예제 #1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Gem::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, 'color' => $this->color, 'traits_color' => $this->traits_color, 'hardness' => $this->hardness, 'shine' => $this->shine]);
     $query->andFilterWhere(['like', 'name', $this->name])->andFilterWhere(['like', 'formula', $this->formula])->andFilterWhere(['like', 'transparency', $this->transparency])->andFilterWhere(['like', 'cleavage', $this->cleavage])->andFilterWhere(['like', 'cleavage_way', $this->cleavage_way])->andFilterWhere(['like', 'structure_type', $this->structure_type])->andFilterWhere(['like', 'separate_state', $this->separate_state])->andFilterWhere(['like', 'bend', $this->bend])->andFilterWhere(['like', 'shape', $this->shape])->andFilterWhere(['like', 'satellites', $this->satellites])->andFilterWhere(['like', 'formation', $this->formation])->andFilterWhere(['like', 'description', $this->description])->andFilterWhere(['like', 'link', $this->link])->andFilterWhere(['like', 'image_name', $this->image_name]);
     return $dataProvider;
 }
예제 #2
0
 /**
  * Finds the Gem model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Gem the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Gem::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }