Example #1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = ComDep::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     $this->load($params);
     //print_r($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, 'com_id' => $this->com_id, 'dep_id' => $this->dep_id, 'datein' => $this->datein, 'dateout' => $this->dateout, 'name' => $this->name]);
     return $dataProvider;
 }
Example #2
0
 /**
  * Displays a single ComDep model.
  * @param integer $id
  * @return mixed
  */
 public function actionView($id)
 {
     $model = ComDep::find();
     //print_r($model);
     return $this->render('view', ['model' => $this->findModel($id)]);
 }