Beispiel #1
0
 public function loadModel($id)
 {
     $model = UrRegion::find($id);
     if ($model === null) {
         throw new CHttpException(404, 'Model not found.');
     }
     return $model;
 }
Beispiel #2
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = UrRegion::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, 'id_ur' => $this->id_ur, 'id_reg' => $this->id_reg]);
     return $dataProvider;
 }
Beispiel #3
0
Datei: Ur.php Projekt: pumi11/aau
 public function geturRegionRecords()
 {
     return $this->hasMany(UrRegion::className(), ['id_ur' => 'id']);
 }