Пример #1
0
 public function actionImage($id)
 {
     Yii::beginProfile('property_image');
     $propertyId = $id;
     $property = PropertyApi::getPropertyById($propertyId);
     $userId = Yii::app()->user->id;
     if (!isset($property) || $property->user_id != $userId) {
         $this->redirect('/search');
         die;
     }
     $model = new PropertyImages();
     $images = PropertyImagesApi::getAllImages($propertyId);
     if (isset($_POST['submit'])) {
         //$model->attributes=$_POST['PropertyImages'];
         $files = CUploadedFile::getInstancesByName('PropertyImages[image]');
         $valid = 1;
         if ($files == null) {
             $model->addError('image', 'Please select atleast one image.');
             $valid = 0;
         }
         if ($valid) {
             $imagePaths = ImageUtils::uploadMultipleImage($files);
             $count = PropertyImagesApi::addMultipleImage($propertyId, $imagePaths);
             ImageUtils::deleteMultipleImages($imagePaths);
             $this->refresh();
         }
     }
     $this->render('image', array('property' => $property, 'model' => $model, 'images' => $images));
     Yii::endProfile('property_image');
 }