Exemplo n.º 1
0
 /**
  * Creates a new Gallery model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate()
 {
     $model = new Gallery();
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         return $this->redirect(['view', 'id' => $model->id]);
     } else {
         return $this->render('create', ['model' => $model]);
     }
 }
Exemplo n.º 2
0
 /**
  * Creates a new Gallery model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * 
  * @return mixed
  */
 public function actionCreate()
 {
     $model = new Gallery();
     if ($model->load(Yii::$app->request->post())) {
         /* Gets the image instance and uploads image to the specified directory
          * and then saves the model data */
         $image = UploadedFile::getInstance($model, 'image');
         $image->saveAs('uploads/' . $image->baseName . '.' . $image->extension);
         $model->image = $image->baseName . '.' . $image->extension;
         $model->save();
         return $this->redirect(['view', 'id' => $model->id]);
     } else {
         return $this->render('create', ['model' => $model]);
     }
 }