/**
 * Creates data provider instance with search query applied
 *
 * @param array $params
 *
 * @return ActiveDataProvider
 */
 public function search($params)
 {
     $query = EmployeesModel::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     $this->load($params);
     if (!$this->validate()) {
         // uncomment the following line if you do not want to any records when validation fails
         // $query->where('0=1');
         return $dataProvider;
     }
     $query->andFilterWhere(['emp_no' => $this->emp_no, 'birth_date' => $this->birth_date, 'hire_date' => $this->hire_date]);
     $query->andFilterWhere(['like', 'first_name', $this->first_name])->andFilterWhere(['like', 'last_name', $this->last_name])->andFilterWhere(['like', 'gender', $this->gender]);
     return $dataProvider;
 }
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getEmpNos0()
 {
     return $this->hasMany(\giiant\sakila\models\Employees::className(), ['emp_no' => 'emp_no'])->viaTable('dept_manager', ['dept_no' => 'dept_no']);
 }
Esempio n. 3
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getEmpNo()
 {
     return $this->hasOne(\giiant\sakila\models\Employees::className(), ['emp_no' => 'emp_no']);
 }
 /**
  * Finds the Employees model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $emp_no
  * @return Employees the loaded model
  * @throws HttpException if the model cannot be found
  */
 protected function findModel($emp_no)
 {
     if (($model = Employees::findOne($emp_no)) !== null) {
         return $model;
     } else {
         throw new HttpException(404, 'The requested page does not exist.');
     }
 }