| Server IP : 54.36.91.62 / Your IP : 216.73.217.112 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/coopiak/dansnotreville-fr/nice/components/com_rsfeedback/views/categories/tmpl/ |
Upload File : |
<?php
/**
* @package RSFeedback!
* @copyright (C) 2010-2018 www.rsjoomla.com
* @license GPL, http://www.gnu.org/licenses/gpl.html
*/
defined( '_JEXEC' ) or die( 'Restricted access' );
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Router\Route;
?>
<div class="categories-list<?php echo $this->pageclass_sfx;?>">
<?php if ($this->permissions['category_add']) { ?>
<div class="<?php echo RSFeedbackAdapterGrid::styles(array('pull-right')); ?>">
<a class="btn btn-primary" href="<?php echo Route::_('index.php?option=com_rsfeedback&task=category.add'.(!empty($this->return_page) ? '&return='.$this->return_page : ''));?>">
<i class="fa fa-plus"></i> <?php echo Text::_('COM_RSFEEDBACK_CATEGORY_ADD');?>
</a>
</div>
<div class="clearfix"></div>
<?php } ?>
<?php if ($this->params->get('show_page_heading')) { ?>
<h1><?php echo $this->escape($this->params->get('page_heading')); ?></h1>
<?php } ?>
<?php if($this->params->get('view_description')) { ?>
<div class="<?php echo RSFeedbackAdapterGrid::card(); ?> mt-2">
<div class="card-body">
<?php echo HTMLHelper::_('content.prepare', $this->params->get('view_description'), '', 'com_rsfeedback.categories'); ?>
</div>
</div>
<?php } ?>
<?php foreach ($this->items as $id => $item) { ?>
<div class="rsfe_category_item">
<h3 class="page-header item-title">
<a href="<?php echo Route::_(RSFeedbackRoute::Category($item->id, $this->tmpl));?>" title="<?php echo $this->escape($item->name); ?>">
<?php echo $this->escape($item->name); ?>
</a>
<?php if ($this->params->get('show_cat_num_feedbacks') == 1) { ?>
<span class="badge badge-info tip hasTooltip" title="<?php echo Text::_('COM_RSFEEDBACK_NUM_ITEMS'); ?>">
<?php echo $item->nr_feedbacks; ?>
</span>
<?php } ?>
</h3>
<?php if ($item->description) { ?>
<div class="category-desc">
<?php echo HTMLHelper::_('content.prepare', $item->description, '', 'com_rsfeedback.categories'); ?>
</div>
<?php } ?>
</div>
<?php } ?>
</div>