예제 #1
0
파일: VotePoll.php 프로젝트: sinfocol/gwf3
 private function checkReversible(GWF_VoteMulti $poll, $user)
 {
     if ($poll->isIrreversible() && $poll->hasVoted($user)) {
         return $this->module->error('err_irreversible');
     }
     return false;
 }