| 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/c/o/o/coopiak/amisdesseniors-fr/nice2/administrator/components/com_rstbox/layouts/ |
Upload File : |
<?php
/**
* @package EngageBox
* @version 6.3.7 Pro
*
* @author Tassos Marinos <info@tassos.gr>
* @link http://www.tassos.gr
* @copyright Copyright © 2020 Tassos Marinos All Rights Reserved
* @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> or later
*/
defined('_JEXEC') or die('Restricted access');
use Joomla\CMS\Factory;
use Joomla\CMS\HTML\HTMLHelper;
$box = $displayData;
$params = EngageBox\Helper::getParams();
// Load core.js as we need to read the csrf.token and system.paths values.
HTMLHelper::_('behavior.core');
if ($params->get('loadVelocity', true))
{
HTMLHelper::script('com_rstbox/vendor/velocity.min.js', ['relative' => true, 'version' => 'auto']);
HTMLHelper::script('com_rstbox/vendor/velocity.ui.min.js', ['relative' => true, 'version' => 'auto']);
if (strpos($box->params->get('animationin'), 'rstbox') !== false || strpos($box->params->get('animationout'), 'rstbox') !== false)
{
HTMLHelper::script('com_rstbox/animations.js', ['relative' => true, 'version' => 'auto']);
}
}
HTMLHelper::script('com_rstbox/engagebox.js', ['relative' => true, 'version' => 'auto']);
if ($params->get('loadCSS', true))
{
HTMLHelper::stylesheet('com_rstbox/engagebox.css', ['relative' => true, 'version' => 'auto']);
}
// Add Custom CSS
if ($box->params->get('customcss'))
{
Factory::getDocument()->addStyleDeclaration($box->params->get('customcss'));
}
// In case of pageslide mode, load the respective script
if ($box->params->get('mode') == 'pageslide')
{
HTMLHelper::script('com_rstbox/pageslide_mode.js', ['relative' => true, 'version' => 'auto']);
}
// If we are tracking with Google Analytics, load the respective script
if ($params->get('gaTrack', false))
{
HTMLHelper::script('com_rstbox/gatracker.js', ['relative' => true, 'version' => 'auto']);
}
?>
<div data-id="<?php echo $box->id ?>"
class="eb-inst eb-hide <?php echo implode(' ', $box->classes) ?>"
data-options='<?php echo json_encode($box->settings, JSON_HEX_APOS) ?>'
data-type='<?php echo $box->params->get('mode') ?>'
<?php if (!empty($box->styles_container)) { ?>style="<?php echo $box->styles_container; ?>"<?php } ?>
<?php if ($box->rtl) { ?>dir="rtl"<?php } ?>>
<?php
$box->close_button_placement = 'outside';
echo $this->sublayout('closebutton', $box);
?>
<div class="eb-dialog <?php echo implode(' ', $box->dialog_classes) ?>" role="dialog" aria-modal="true" id="dialog<?php echo $box->id ?>" aria-label="dialog<?php echo $box->id; ?>">
<?php
$box->close_button_placement = 'inside';
echo $this->sublayout('closebutton', $box);
?>
<div class="eb-container">
<?php if ($box->params->get('showtitle', true)) { ?>
<div class="eb-header">
<?php echo $box->name ?>
</div>
<?php } ?>
<div class="eb-content">
<?php
echo $box->content;
echo $params->get("globalFooter");
?>
</div>
</div>
</div>
</div>
<?php
if ($box->triggermethod == 'floatingbutton' || $box->params->get('floating_button_show_on_close'))
{
echo $this->sublayout('floatingbutton', $box);
}