Example #1
0
 /**
  * This method accepts projectId and userId .
  * Returns model if successfully added.
  * Returns the error validated model if validation fails.
  *
  *
  * @param string $userId and $projectId
  * @return model
  */
 public static function addToWishlist($projectId, $userId)
 {
     $projectWishlist = new ProjectWishlist();
     $projectWishlist->project_id = $projectId;
     $projectWishlist->user_id = $userId;
     $projectWishlist->save();
     return $projectWishlist;
 }
 /**
  * Creates a new model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  */
 public function actionCreate()
 {
     $model = new ProjectWishlist();
     // Uncomment the following line if AJAX validation is needed
     // $this->performAjaxValidation($model);
     if (isset($_POST['ProjectWishlist'])) {
         $model->attributes = $_POST['ProjectWishlist'];
         if ($model->save()) {
             $this->redirect(array('view', 'id' => $model->id));
         }
     }
     $this->render('create', array('model' => $model));
 }