Azeri
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
www
/
vhosts
/
chipionatv.com
/
httpdocs
/
plugins
/
content
/
vote
/
Filename :
vote.php
back
Copy
<?php /** * @package Joomla.Plugin * @subpackage Content.vote * * @copyright Copyright (C) 2005 - 2016 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; /** * Vote plugin. * * @since 1.5 */ class PlgContentVote extends JPlugin { /** * Load the language file on instantiation. * * @var boolean * @since 3.1 */ protected $autoloadLanguage = true; /** * Displays the voting area if in an article * * @param string $context The context of the content being passed to the plugin * @param object &$row The article object * @param object &$params The article params * @param integer $page The 'page' number * * @return mixed html string containing code for the votes if in com_content else boolean false * * @since 1.6 */ public function onContentBeforeDisplay($context, &$row, &$params, $page=0) { $parts = explode(".", $context); if ($parts[0] != 'com_content') { return false; } $html = ''; if (!empty($params) && $params->get('show_vote', null)) { $rating = (int) @$row->rating; $view = JFactory::getApplication()->input->getString('view', ''); $img = ''; // Look for images in template if available $starImageOn = JHtml::_('image', 'system/rating_star.png', JText::_('PLG_VOTE_STAR_ACTIVE'), null, true); $starImageOff = JHtml::_('image', 'system/rating_star_blank.png', JText::_('PLG_VOTE_STAR_INACTIVE'), null, true); for ($i = 0; $i < $rating; $i++) { $img .= $starImageOn; } for ($i = $rating; $i < 5; $i++) { $img .= $starImageOff; } $html .= '<div class="content_rating" itemprop="aggregateRating" itemscope itemtype="https://schema.org/AggregateRating">'; $html .= '<p class="unseen element-invisible">' . JText::sprintf('PLG_VOTE_USER_RATING', '<span itemprop="ratingValue">' . $rating . '</span>', '<span itemprop="bestRating">5</span>') . '<meta itemprop="ratingCount" content="' . (int) $row->rating_count . '" />' . '<meta itemprop="worstRating" content="0" />' . '</p>'; $html .= $img; $html .= '</div>'; if ($view == 'article' && $row->state == 1) { $uri = JUri::getInstance(); $uri->setQuery($uri->getQuery() . '&hitcount=0'); // Create option list for voting select box $options = array(); for ($i = 1; $i < 6; $i++) { $options[] = JHtml::_('select.option', $i, JText::sprintf('PLG_VOTE_VOTE', $i)); } // Generate voting form $html .= '<form method="post" action="' . htmlspecialchars($uri->toString()) . '" class="form-inline">'; $html .= '<span class="content_vote">'; $html .= '<label class="unseen element-invisible" for="content_vote_' . $row->id . '">' . JText::_('PLG_VOTE_LABEL') . '</label>'; $html .= JHtml::_('select.genericlist', $options, 'user_rating', null, 'value', 'text', '5', 'content_vote_' . $row->id); $html .= ' <input class="btn btn-mini" type="submit" name="submit_vote" value="' . JText::_('PLG_VOTE_RATE') . '" />'; $html .= '<input type="hidden" name="task" value="article.vote" />'; $html .= '<input type="hidden" name="hitcount" value="0" />'; $html .= '<input type="hidden" name="url" value="' . htmlspecialchars($uri->toString()) . '" />'; $html .= JHtml::_('form.token'); $html .= '</span>'; $html .= '</form>'; } } return $html; } }