| 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/comments/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\Uri\Uri;
?>
<div class="<?php echo RSFeedbackAdapterGrid::row(); ?>">
<div class="<?php echo RSFeedbackAdapterGrid::column(12); ?>">
<?php if ($this->config->permission_show_subscriptions) { ?>
<a href="javascript:void(0)" data-target="#SubscribeForm<?php echo $this->feedback_id;?>" data-bs-target="#SubscribeForm<?php echo $this->feedback_id;?>" class="btn btn-info <?php echo RSFeedbackAdapterGrid::styles(array('pull-right')); ?>" data-toggle="modal" data-bs-toggle="modal" id="rsfe_subscribe_btn"><?php echo Text::_('COM_RSFEEDBACK_SUBSCRIBE');?></a>
<style type="text/css">#SubscribeForm<?php echo $this->feedback_id;?> .modal-body { overflow-y: auto; }</style>
<?php } ?>
<?php if (!empty($this->items)) { ?>
<h3 id="rsfe_commentslist_title"><?php echo Text::_('COM_RSFEEDBACK_VIEW_COMMENTS');?></h3>
<?php foreach($this->items as $item) { ?>
<div id="comment<?php echo $item->id;?>" class="rsfe_comment_container">
<div class="rsfe_comment_avatar">
<?php if (!empty($this->config->permission_show_gravatar)) { ?>
<div class="rsfe_img">
<?php echo HTMLHelper::_('image', 'https://www.gravatar.com/avatar/'.$item->gravatar.'?d='.urlencode(Uri::root().'media/com_rsfeedback/images/site/user.png'), 'Gravatar', array("width"=>"64", "height"=>"64")); ?>
</div>
<?php } ?>
<small class="rsfe_author"><?php echo Text::sprintf('COM_RSFEEDBACK_COMMENT_BY_USER_ON_DATE', $item->name, $item->date);?></small>
</div>
<div class="rsfe_comment_details">
<div class="rsfeedback_content">
<p><?php echo nl2br($this->escape($item->comment));?></p>
</div>
</div>
</div>
<?php } ?>
<?php if ($this->pagination->pagesTotal > 1) { ?>
<div class="com-rsfeedback-feedbacks_navigation w-100 <?php echo !RSFeedbackHelper::isJ4() ? 'pagination' : ''; ?>">
<p class="com-rsfeedback-feedbacks_counter <?php echo RSFeedbackAdapterGrid::styles(array('counter','pull-right')); ?>">
<?php echo $this->pagination->getPagesCounter(); ?>
</p>
<div class="com-rsfeedback-feedbacks_pagination">
<?php echo $this->pagination->getPagesLinks(); ?>
</div>
</div>
<div class="clearfix"></div>
<br />
<?php } ?>
<?php } ?>
</div>
</div>
<?php if ($this->config->permission_show_subscriptions) echo HTMLHelper::_('bootstrap.renderModal', 'SubscribeForm'.$this->feedback_id, array('title' => Text::_('COM_RSFEEDBACK_SUBSCRIBE_FEEDBACK'), 'bodyHeight' => 70, 'modalWidth' => 40, 'footer' => '<button class="btn btn-primary" id="rsfe_subscribe_submit" type="button">'.Text::_('COM_RSFEEDBACK_SUBMIT').'</button> <button class="btn btn-danger" data-dismiss="modal" data-bs-dismiss="modal" aria-hidden="true">'.Text::_('COM_RSFEEDBACK_CLOSE').'</button>'), $this->loadTemplate('form_subscribe')); ?>