Пример #1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Vehicles::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, 'company_id' => $this->company_id, 'line_id' => $this->line_id, 'user_id' => $this->user_id, 'vehicle_type_id' => $this->vehicle_type_id, 'record_status' => $this->record_status]);
     $query->andFilterWhere(['like', 'license_plate', $this->license_plate])->andFilterWhere(['like', 'image', $this->image]);
     return $dataProvider;
 }
Пример #2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getVehicles()
 {
     return $this->hasMany(Vehicles::className(), ['vehicle_type_id' => 'id']);
 }
Пример #3
0
 /**
  * Finds the Vehicles model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Vehicles the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Vehicles::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }