Ejemplo n.º 1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Province::find();
     $dataproviderpro = new ActiveDataProvider(['query' => $query, 'pagination' => ['pageSize' => 20]]);
     $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 $dataproviderpro;
     }
     $query->andFilterWhere(['PROVINCE_ID' => $this->PROVINCE_ID]);
     $query->andFilterWhere(['like', 'PROVINCE', $this->PROVINCE]);
     return $dataproviderpro;
 }
 /**
  * Finds the Kategoricus model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Kategoricus the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModelpro($id)
 {
     if (($model = Province::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
Ejemplo n.º 3
0
 public function getCustprov()
 {
     return $this->hasOne(Province::className(), ['PROVINCE_ID' => 'PROVINCE_ID']);
 }