get('show_vote'); if ($voting) { // calculate voting count $select = ' , ROUND( v.rating_sum / v.rating_count ) AS rating, v.rating_count'; $join = ' LEFT JOIN #__content_rating AS v ON a.id = v.content_id'; } else { $select = ''; $join = ''; } $results = array ('select' => $select, 'join' => $join); return $results; } }