/**
  * 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($id)
 {
     $model = ProjectImages::model()->findByPk($id);
     if ($model === null) {
         throw new CHttpException(404, 'The requested page does not exist.');
     }
     return $model;
 }
Beispiel #2
0
 public function actionImage($id)
 {
     Yii::beginProfile('project_image');
     $projectId = $id;
     $project = ProjectApi::getProjectById($projectId);
     $userId = Yii::app()->user->id;
     if (!isset($project) || $project->user_id != $userId) {
         $this->redirect('/search');
     }
     $model = new ProjectImages();
     $images = ProjectImagesApi::getAllImages($projectId);
     if (isset($_POST['submit'])) {
         //$model->attributes=$_POST['PropertyImages'];
         $files = CUploadedFile::getInstancesByName('ProjectImages[image]');
         $valid = 1;
         if ($files == null) {
             $model->addError('image', 'Please select atleast one image.');
             $valid = 0;
         }
         if ($valid) {
             $imagePaths = ImageUtils::uploadMultipleImage($files);
             $count = ProjectImagesApi::addMultipleImage($projectId, $imagePaths);
             ImageUtils::deleteMultipleImages($imagePaths);
             $this->refresh();
         }
     }
     $this->render('image', array('project' => $project, 'model' => $model, 'images' => $images));
     Yii::endProfile('project_image');
 }
Beispiel #3
0
 public static function getPrimaryImageForProjects($projectIds)
 {
     $criteria = new CDbCriteria();
     $criteria->addInCondition('project_id', $projectIds);
     $models = ProjectImages::model()->findAll($criteria);
     $result = false;
     foreach ($models as $model) {
         $result[$model->project_id] = ImageUtils::getImageUrl('projects', $model->project_id, $model->image);
     }
     return $result;
 }