Exemplo n.º 1
0
 /**
  * Creates a new Helpdesk model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate()
 {
     $model = new Helpdesk();
     if ($model->load(Yii::$app->request->post())) {
         $this->Uploads(false);
         $model->images = $this->uploadMultipleFile($model);
         $model->datetime = new \yii\db\Expression('NOW()');
         if ($model->save()) {
             return $this->redirect(['view', 'id' => $model->id]);
         }
     } else {
         $model->ref = substr(Yii::$app->getSecurity()->generateRandomString(), 10);
     }
     return $this->render('create', ['model' => $model]);
 }