示例#1
0
 public function unlikeAlbumCommentAction()
 {
     $this->_helper->layout()->disableLayout();
     $objModelVote = new Application_Model_Vote();
     $arrPostVal = $this->getRequest()->getParams();
     $commentId = $arrPostVal['commentId'];
     $item_type = $arrPostVal['item_type'];
     $this->unlike($commentId, $item_type);
     $this->view->commentId = $commentId;
     /*-------- GET NUMBER OF VOTE -----------*/
     $numVotes = $objModelVote->numVotes($item_type, $commentId);
     $this->view->numVotes = $numVotes;
 }