| Current Path : /home/lejardintz/www/components/com_komento/themes/kuro/comment/ |
| Current File : /home/lejardintz/www/components/com_komento/themes/kuro/comment/ratings.php |
<?php
/**
* @package Komento
* @copyright Copyright (C) 2012 Stack Ideas Private Limited. All rights reserved.
* @license GNU/GPL, see LICENSE.php
*
* Komento is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
defined('_JEXEC') or die('Restricted access');
?>
<script type="text/javascript">
Komento.require()
.script('komento.ratings')
.done(function($)
{
$('[data-rating-overall]').implement(Komento.Controller.Ratings.Item);
});
</script>
<div class="kmt-ratings-overview">
<h3 class="kmt-title"><?php echo JText::sprintf('COM_KOMENTO_OVERALL_RATING', $totalRatingCount); ?></h3>
<div class="kmt-ratings-result kmt-ratings-stars" data-rating-overall>
<input type="radio" name="ratings" value="1" title="Very poor"<?php echo ($totalRating == 1 ) ? ' checked="checked"' : '';?> />
<input type="radio" name="ratings" value="2" title="Poor"<?php echo ($totalRating == 2 ) ? ' checked="checked"' : '';?> />
<input type="radio" name="ratings" value="3" title="Not that bad"<?php echo ($totalRating == 3 ) ? ' checked="checked"' : '';?> />
<input type="radio" name="ratings" value="4" title="Fair"<?php echo ($totalRating == 4 ) ? ' checked="checked"' : '';?> />
<input type="radio" name="ratings" value="5" title="Average"<?php echo ($totalRating == 5 ) ? ' checked="checked"' : '';?> />
<input type="radio" name="ratings" value="6" title="Almost good"<?php echo ($totalRating == 6 ) ? ' checked="checked"' : '';?> />
<input type="radio" name="ratings" value="7" title="Good"<?php echo ($totalRating == 7 ) ? ' checked="checked"' : '';?> />
<input type="radio" name="ratings" value="8" title="Very good"<?php echo ($totalRating == 8 ) ? ' checked="checked"' : '';?> />
<input type="radio" name="ratings" value="9" title="Excellent"<?php echo ($totalRating == 9 ) ? ' checked="checked"' : '';?> />
<input type="radio" name="ratings" value="10" title="Perfect"<?php echo ($totalRating == 10 ) ? ' checked="checked"' : '';?> />
</div>
<span class="kmt-ratings-title"><?php echo JText::sprintf('COM_KOMENTO_RATING_TOTAL', $totalRating / 2);?></span>
</div>