[ 'class' => AccessControl::class, 'rules' => [ [ 'allow' => true, 'actions' => ['index', 'view', 'create', 'update', 'delete'], 'roles' => ['user'], // only user can do these ] ], ], 'verbs' => [ 'class' => VerbFilter::class, 'actions' => [ 'index' => ['GET'], 'view' => ['GET'], 'create' => ['GET', 'POST'], 'update' => ['GET', 'POST'], 'delete' => ['POST'], ], ], ] ); } /** * Lists all Tickets models. * * @return string */ public function actionIndex(): string { $searchModel = new TicketsSearch(); $dataProvider = $searchModel->search($this->request->queryParams); return $this->render('index', [ 'searchModel' => $searchModel, 'dataProvider' => $dataProvider, ]); } /** * Displays a single Tickets model. * @param int $id 工单id * @return string * @throws NotFoundHttpException if the model cannot be found */ public function actionView(int $id): string { return $this->render('view', [ 'model' => $this->findModel($id), ]); } /** * Creates a new Tickets model. * If creation is successful, the browser will be redirected to the 'view' page. * @return string|Response */ public function actionCreate(): Response|string { $model = new Tickets(); if ($this->request->isPost) { if ($model->load($this->request->post())) { // add properties that are not in the form $model->user_id = Yii::$app->user->id; $model->status = Tickets::STATUS_OPEN; $model->ip = $this->request->userIP; $model->created_at = date('Y-m-d H:i:s'); $model->updated_at = date('Y-m-d H:i:s'); if($model->save()){ return $this->redirect(['view', 'id' => $model->id]); } } } return $this->render('create', [ 'model' => $model, ]); } /** * Updates an existing Tickets model. * If update is successful, the browser will be redirected to the 'view' page. * @param int $id 工单id * @return string|Response * @throws NotFoundHttpException if the model cannot be found */ public function actionUpdate(int $id): Response|string { $model = $this->findModel($id); if ($this->request->isPost && $model->load($this->request->post()) && $model->save()) { return $this->redirect(['view', 'id' => $model->id]); } return $this->render('update', [ 'model' => $model, ]); } /** * Deletes an existing Tickets model. * If deletion is successful, the browser will be redirected to the 'index' page. * @param int $id 工单id * @return Response * @throws NotFoundHttpException if the model cannot be found * @throws \Throwable * @throws StaleObjectException */ public function actionDelete(int $id): Response { $this->findModel($id)->delete(); return $this->redirect(['index']); } /** * Finds the Tickets model based on its primary key value. * If the model is not found, a 404 HTTP exception will be thrown. * @param int $id 工单id * @return Tickets the loaded model * @throws NotFoundHttpException if the model cannot be found */ protected function findModel(int $id): Tickets { if (($model = Tickets::findOne(['id' => $id])) !== null) { return $model; } throw new NotFoundHttpException('The requested page does not exist.'); } }