Example #1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = TblTonerInventory::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(['form_id' => $this->form_id, 'user_id' => $this->user_id, 'form_type' => $this->form_type, 'closed_by' => $this->closed_by, 'start_date' => $this->start_date, 'end_date' => $this->end_date, 'assigned_to' => $this->assigned_to, 'inventory' => $this->inventory]);
     $query->andFilterWhere(['like', 'color', $this->color])->andFilterWhere(['like', 'tag', $this->tag])->andFilterWhere(['like', 'comments', $this->comments]);
     return $dataProvider;
 }
 /**
  * Finds the TblTonerInventory model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return TblTonerInventory the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = TblTonerInventory::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }