Ejemplo n.º 1
0
 public function actionIndex()
 {
     $model = Facilities::model()->find();
     $flag = 0;
     $flag1 = 0;
     $flag2 = 0;
     if (!empty($_POST['Facilities'])) {
         $image1_old = $model->attributes['image1'];
         if (!empty(CUploadedFile::getInstance($model, 'image1')->name)) {
             $image1_old = $model->attributes['image1'];
             $path = realpath(Yii::app()->basePath . '/../upload/images/' . $image1_old);
             if (file_exists($path) && !empty($image1_old)) {
                 unlink($path);
             }
             $model->attributes = $_POST['Facilities'];
             $model->image1 = CUploadedFile::getInstance($model, 'image1');
             $image = $model->image1;
             $imageType = explode('.', $model->image1->name);
             $imageType = $imageType[count($imageType) - 1];
             $imageName = md5(uniqid()) . '.' . $imageType;
             $model->image1 = $imageName;
             $images_path = Yii::getPathOfAlias('webroot') . '/upload/images/' . $imageName;
             $flag = 1;
         } else {
             $model->image1 = $image1_old;
             $model->attributes = $_POST['Facilities'];
         }
         $image2_old = $model->attributes['image2'];
         if (!empty(CUploadedFile::getInstance($model, 'image2')->name)) {
             $image2_old = $model->attributes['image2'];
             $path = realpath(Yii::app()->basePath . '/../upload/images/' . $image2_old);
             if (file_exists($path) && !empty($image2_old)) {
                 unlink($path);
             }
             $model->attributes = $_POST['Facilities'];
             $model->image2 = CUploadedFile::getInstance($model, 'image2');
             $image1 = $model->image2;
             $imageType = explode('.', $model->image2->name);
             $imageType = $imageType[count($imageType) - 1];
             $imageName = md5(uniqid()) . '.' . $imageType;
             $model->image2 = $imageName;
             $images_path1 = Yii::getPathOfAlias('webroot') . '/upload/images/' . $imageName;
             $flag1 = 1;
         } else {
             $model->attributes = $_POST['Facilities'];
             $model->image2 = $image2_old;
         }
         $image3_old = $model->attributes['image3'];
         if (!empty(CUploadedFile::getInstance($model, 'image3')->name)) {
             $image3_old = $model->attributes['image3'];
             $path = realpath(Yii::app()->basePath . '/../upload/images/' . $image3_old);
             if (file_exists($path) && !empty($image3_old)) {
                 unlink($path);
             }
             $model->image3 = CUploadedFile::getInstance($model, 'image3');
             $image2 = $model->image3;
             $imageType = explode('.', $model->image3->name);
             $imageType = $imageType[count($imageType) - 1];
             $imageName = md5(uniqid()) . '.' . $imageType;
             $model->image3 = $imageName;
             $images_path2 = Yii::getPathOfAlias('webroot') . '/upload/images/' . $imageName;
             $flag2 = 1;
         } else {
             $model->image3 = $image3_old;
         }
         if ($model->save()) {
             Yii::app()->user->setFlash('success', translate('Cập nhật thành công.'));
             if ($flag == 1) {
                 $image->saveAs($images_path);
             }
             if ($flag1 == 1) {
                 $image1->saveAs($images_path1);
             }
             if ($flag2 == 1) {
                 $image2->saveAs($images_path2);
             }
             $this->redirect(PIUrl::createUrl('/admin/facilities'));
         }
     }
     $this->render('index', array('model' => $model));
 }
Ejemplo n.º 2
0
 /**
  * Returns the data model based on the primary key given in the GET variable.
  * If the data model is not found, an HTTP exception will be raised.
  * @param integer the ID of the model to be loaded
  */
 public function loadModel($type, $id)
 {
     if ($type == 'Employees') {
         $model = Employees::model()->findByPk($id);
     } elseif ($type == 'Hardware') {
         $model = Hardware::model()->findByPk($id);
     } elseif ($type == 'Facilities') {
         $model = Facilities::model()->findByPk($id);
     } elseif ($type == 'CustomResources') {
         $model = CustomResources::model()->findByPk($id);
     }
     if ($model === null) {
         throw new CHttpException(404, 'The requested page does not exist.');
     }
     return $model;
 }