예제 #1
0
파일: Poll.php 프로젝트: quyip8818/Mag
 /**
  * Add vote to poll
  *
  * @return unknown
  */
 public function addVote(Mage_Poll_Model_Poll_Vote $vote)
 {
     if ($this->hasAnswer($vote->getPollAnswerId())) {
         $vote->setPollId($this->getId())->save();
         $this->setVoted();
     }
     return $this;
 }
예제 #2
0
 protected function _construct()
 {
     return parent::_construct();
 }