[ 'class' => VerbFilter::className(), 'actions' => [ 'delete' => ['post'], ], ], 'access' => [ 'class' => \yii\filters\AccessControl::className(), 'only' => ['create', 'update','reception'], 'rules' => [ // allow authenticated users [ 'allow' => true, 'roles' => ['@'], ], // everything else is denied ], ], ]; } public function actionReception($number = ""){ $model = new ReceptionForm(); $model->number = $number; $model->readCard(); return $this->render('reception',['model' => $model]); } /** * Lists all Customer models. * @return mixed */ /* public function actionIndex() { $searchModel = new CustomerSearch(); $dataProvider = $searchModel->search(Yii::$app->request->queryParams); return $this->render('index', [ 'searchModel' => $searchModel, 'dataProvider' => $dataProvider, ]); } */ /** * Displays a single Customer model. * @param integer $id * @return mixed */ /* public function actionView($id) { return $this->render('view', [ 'model' => $this->findModel($id), ]); } */ /** * Creates a new Customer model. * If creation is successful, the browser will be redirected to the 'view' page. * @return mixed */ public function actionCreate($number = null) { $model = new CustomerCreate(); $model->country = "Magyarország"; $model->id_user = Yii::$app->user->id; if ( isset($number)){ $model->cardNumber = $number; } if ($model->load(Yii::$app->request->post()) && $model->save()) { \Yii::$app->session->setFlash( 'success','Vendég létrehozva!' ); return $this->redirect(['update', 'number' => $model->cardNumber]); } else { return $this->render('create', [ 'model' => $model, ]); } } /** * Updates an existing Customer model. * If update is successful, the browser will be redirected to the 'view' page. * @param integer $id * @return mixed */ public function actionUpdate($number = null) { $card = null; $model = null; if ( $number != null ){ $card = Card::readCard($number); if ( $card != null ){ $model = CustomerUpdate::find()->innerJoin(Card::tableName(), "customer.id_customer_card = card.id_card")->andWhere( [ 'customer.id_customer_card' => $card->id_card ])->one(); } } if ( $model == null) { throw new NotFoundHttpException('The requested page does not exist.'); } $model->birthdate= isset($model->birthdate ) ? Yii::$app->formatter->asDate($model->birthdate) :''; if ($model->load(Yii::$app->request->post()) && $model->save()) { \Yii::$app->session->setFlash( 'success','Vendég módosításai elmentve' ); return $this->redirect(['update', 'number' => $card->number]); } else { return $this->render('update', [ 'model' => $model, ]); } } /** * Deletes an existing Customer model. * If deletion is successful, the browser will be redirected to the 'index' page. * @param integer $id * @return mixed */ /* public function actionDelete($id) { $this->findModel($id)->delete(); return $this->redirect(['index']); } */ /** * Finds the Customer model based on its primary key value. * If the model is not found, a 404 HTTP exception will be thrown. * @param integer $id * @return Customer the loaded model * @throws NotFoundHttpException if the model cannot be found */ protected function findModel($id) { if (($model = Customer::findOne($id)) !== null) { return $model; } else { throw new NotFoundHttpException('The requested page does not exist.'); } } }