コード例 #1
0
 public static function modifyEntryVotesBykVote(kvote $kvote)
 {
     $entry = $kvote->getEntry();
     $res = self::modifyEntryVotes($entry, $kvote->getRank(), $kvote->getStatus());
     return $res;
 }
コード例 #2
0
 public static function addKvote(kvote $kvote, $delta_rank)
 {
     $entry = $kvote->getEntry();
     $res = self::incEntryVotes($entry, $delta_rank);
     return $res;
 }