예제 #1
0
 public function search($params)
 {
     $query = Rental::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     if (!($this->load($params) && $this->validate())) {
         return $dataProvider;
     }
     $query->andFilterWhere(['rental_id' => $this->rental_id, 'rental_date' => $this->rental_date, 'inventory_id' => $this->inventory_id, 'customer_id' => $this->customer_id, 'return_date' => $this->return_date, 'staff_id' => $this->staff_id, 'last_update' => $this->last_update]);
     return $dataProvider;
 }
예제 #2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getRentals()
 {
     return $this->hasMany(\app\modules\sakila\models\Rental::className(), ['inventory_id' => 'inventory_id']);
 }
예제 #3
0
 /**
  * Finds the Rental model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $rental_id
  * @return Rental the loaded model
  * @throws HttpException if the model cannot be found
  */
 protected function findModel($rental_id)
 {
     if (($model = Rental::findOne($rental_id)) !== null) {
         return $model;
     } else {
         throw new HttpException(404, 'The requested page does not exist.');
     }
 }
예제 #4
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getRental()
 {
     return $this->hasOne(\app\modules\sakila\models\Rental::className(), ['rental_id' => 'rental_id']);
 }