Exemple #1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Licenses::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, 'user_id' => $this->user_id, 'license_class_id' => $this->license_class_id, 'committee_id' => $this->committee_id, 'status' => $this->status, 'office_id' => $this->office_id]);
     $query->andFilterWhere(['like', 'callsign', $this->callsign])->andFilterWhere(['like', 'num', $this->num])->andFilterWhere(['like', 'date', $this->date])->andFilterWhere(['like', 'expired_date', $this->expired_date]);
     return $dataProvider;
 }
Exemple #2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getLicenses()
 {
     return $this->hasOne(Licenses::className(), ['C_ID' => 'C_ID']);
 }
Exemple #3
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getLicenses()
 {
     return $this->hasMany(Licenses::className(), ['Prot_ID' => 'Protocol_ID']);
 }
 /**
  * Finds the Licenses model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Licenses the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Licenses::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }