protected function findModelUser($id)
 {
     $model = User::findOne($id);
     if ($model->user_type == 2) {
         return $userModel = UserDlt::findOne($id);
     } elseif ($model->user_type == 3) {
         return $userModel = Usercustoms::findOne($id);
     } elseif ($model->user_type == 5) {
         return $userModel = UserTourcompany::findOne($id);
     }
 }
Beispiel #2
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = UserDlt::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, 'title' => $this->title, 'emp_id' => $this->emp_id, 'id_no' => $this->id_no, 'user_id' => $this->user_id]);
     $query->andFilterWhere(['like', 'name', $this->name])->andFilterWhere(['like', 'lname', $this->lname])->andFilterWhere(['like', 'off_code', $this->off_code])->andFilterWhere(['like', 'br_code', $this->br_code])->andFilterWhere(['like', 'org_code', $this->org_code]);
     return $dataProvider;
 }
 /**
  * Finds the UserDlt model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return UserDlt the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = UserDlt::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }