registerEvent( 'onBeforeDisplayContent', 'plgContentVote' ); function plgContentVote( &$row, &$params, $page=0 ) { $uri = & JFactory::getURI(); $id = $row->id; $html = ''; if (isset($row->rating_count) && $params->get( 'show_vote' ) && !$params->get( 'popup' )) { JPlugin::loadLanguage( 'plg_content_vote' ); $html .= '
'; } return $html; }