Back to PhocaGalleryRateImage class

Method getVotesStatistics

public static
getVotesStatistics
(mixed $id)

Method getVotesStatistics - Source code

public static function getVotesStatistics($id)
{
    $db = Factory::getDBO();
    $query = 'SELECT vs.count AS count, vs.average AS average' . ' FROM #__phocagallery_img_votes_statistics AS vs' . ' WHERE vs.imgid = ' . (int) $id;
    $db->setQuery($query, 0, 1);
    $votesStatistics = $db->loadObject();
    return $votesStatistics;
}