Exemplo n.º 1
0
 function votes_from_ip($ip = '', $value = "<> 0")
 {
     require_once mnminclude . 'votes.php';
     $vote = new Vote();
     $vote->type = 'comments';
     $vote->user = -1;
     $vote->ip = $ip;
     $vote->link = $this->id;
     return $vote->anycount($value);
 }
Exemplo n.º 2
0
 function countvotes()
 {
     require_once mnminclude . 'votes.php';
     $vote = new Vote();
     $vote->type = 'links';
     $vote->link = $this->id;
     return $vote->anycount();
 }
Exemplo n.º 3
0
 function votes($user)
 {
     require_once mnminclude . 'votes.php';
     $vote = new Vote();
     $vote->type = 'comments';
     $vote->user = $user;
     $vote->link = $this->id;
     return $vote->anycount();
 }