| Server IP : 54.36.91.62 / Your IP : 216.73.217.94 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/c/o/o/coopiak/amisdesseniors-fr/components/com_jlexreview/templates/clean/ranking/ |
Upload File : |
<?php
/**
* @package JLex Review
* @version 4.2.3
* @copyright Copyright (c) 2013-2018 JLexArt. All rights reserved
* @license GNU General Public License version 2 or later;
* @author www.jlexart.com
*/
defined ( "_JEXEC" ) or die;
?>
<?php if ($this->params->get('show_page_heading')) : ?>
<div class="page-header">
<h1>
<?php echo $this->params->get('page_heading'); ?>
</h1>
</div>
<?php endif; ?>
<table id="jreview-ranking">
<thead>
<tr>
<th>#</th>
<th><?php echo JText::_("JR_NAME"); ?></th>
<?php if ($this->config->def("raking_number_review",1)==1): ?>
<th><?php echo JText::_("JR_RATING"); ?></th>
<?php endif; ?>
<?php if ($this->config->def("raking_number_comment",1)==1 && $this->config->def("comment_enable",1)==1): ?>
<th><?php echo JText::_("JR_COMMENT"); ?></th>
<?php endif; ?>
<?php if ($this->config->def("helpful_vote",1)==1 && $this->config->def("raking_helpful_vote",1)==1): ?>
<th><?php echo JText::_("JR_HELPFUL_VOTED") ?></th>
<?php endif; ?>
<th><?php echo JText::_("JR_TOTAL_POINT") ?></th>
</tr>
</thead>
<tbody>
<?php if (count($this->items)): ?>
<?php
foreach ($this->items as $item):
?>
<tr>
<td class="_ranking _center"><?php echo $item->rank ?></td>
<td>
<a class="_reviewer" href="<?php echo $item->profile->get('jreview_link') ?>">
<img src="<?php echo $item->profile->get('jreview_thumb'); ?>" />
<span><?php echo $item->profile->get('jname'); ?></span>
</a>
</td>
<?php if ($this->config->def("raking_number_review",1)==1): ?>
<td class="_center"><?php echo $item->profile->get("jreview_count_rating")>0?$item->profile->get("jreview_count_rating"):'-'; ?></td>
<?php endif ?>
<?php if ($this->config->def("raking_number_comment",1)==1 && $this->config->def("comment_enable",1)==1): ?>
<td class="_center"><?php echo $item->profile->get("jreview_count_cm")>0?$item->profile->get("jreview_count_cm"):'-'; ?></td>
<?php endif; ?>
<?php if ($this->config->def("helpful_vote",1)==1 && $this->config->def("raking_helpful_vote",1)==1): ?>
<td class="_center"><?php echo $item->profile->get("jreview_count_helpful")>0?$item->profile->get("jreview_count_helpful"):'-'; ?></td>
<?php endif; ?>
<td class="_center"><?php echo $item->total_point>0?$item->total_point:'-' ?></td>
</tr>
<?php endforeach; ?>
<?php else: ?>
<?php endif; ?>
</tbody>
</table>
<?php // pagination ?>
<div class="" style="margin-top:15px;text-align:center">
<?php echo $this->pagination->getPagesLinks(); ?>
</div>