示例#1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Oborud::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_zal' => $this->id_zal]);
     $query->andFilterWhere(['like', 'name_oborud', $this->name_oborud]);
     return $dataProvider;
 }
示例#2
0
 /**
  * Finds the Oborud model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Oborud the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Oborud::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
示例#3
0
文件: Zal.php 项目: Sywooch/arenda
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getOboruds()
 {
     return $this->hasMany(Oborud::className(), ['id_zal' => 'id']);
 }