| Server IP : 54.36.91.62 / Your IP : 216.73.217.111 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/amisdesseniors-fr/nice/modules/mod_rsfeedback/ |
Upload File : |
<?php
/**
* @package RSFeedback!
* @copyright (C) 2014-2018 www.rsjoomla.com
* @license GPL, http://www.gnu.org/licenses/gpl-2.0.html
*/
// no direct access
defined('_JEXEC') or die('Restricted access');
use Joomla\CMS\Helper\ModuleHelper;
use Joomla\CMS\HTML\HTMLHelper;
if (file_exists(JPATH_SITE.'/components/com_rsfeedback/rsfeedback.php'))
{
// Include the syndicate functions only once
require_once dirname(__FILE__).'/helper.php';
require_once JPATH_SITE.'/components/com_rsfeedback/helpers/route.php';
HTMLHelper::_('stylesheet', 'mod_rsfeedback/style.css', array('relative' => true));
$class = $params->get('moduleclass_sfx');
$feedbacks = modRsfeedbackHelper::getFeedbacks($params);
$customText = $params->get('customText');
$showLink = $params->get('showLink', 1);
$customItemid = $params->get('Itemid','');
if (!empty($customItemid))
$customItemid = '&Itemid='.$customItemid;
require ModuleHelper::getLayoutPath('mod_rsfeedback');
}