| 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/amisdesseniors-fr/administrator/components/com_rstbox/views/items/tmpl/ |
Upload File : |
<?php
/**
* @package EngageBox
* @version 7.0.0 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\Button\PublishedButton;
use Joomla\CMS\Layout\LayoutHelper;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Factory;
$listOrder = $this->escape($this->state->get('list.ordering'));
$listDirn = $this->escape($this->state->get('list.direction'));
$user = Factory::getUser();
// Load the EngageBox Templates Library
new Tassos\EngageBox\Library();
?>
<div class="j-main-container">
<form action="<?php echo Route::_('index.php?option=com_rstbox&view=items'); ?>" method="post" name="adminForm" id="adminForm">
<?php
echo LayoutHelper::render('joomla.searchtools.default', array('view' => $this));
?>
<table class="adminlist table">
<thead>
<tr>
<th class="center" width="2%">
<?php echo HTMLHelper::_('grid.checkall'); ?>
</th>
<th width="1%" class="nowrap hidden-phone" align="center">
<?php echo HTMLHelper::_('searchtools.sort', 'JSTATUS', 'a.published', $listDirn, $listOrder); ?>
</th>
<th width="1%"></th>
<th>
<?php echo HTMLHelper::_('searchtools.sort', 'NR_NAME', 'a.name', $listDirn, $listOrder); ?>
</th>
<th width="15%">
<?php echo Text::_('COM_RSTBOX_BOX_MODE') ?>
</th>
<th width="15%">
<?php echo HTMLHelper::_('searchtools.sort', 'COM_RSTBOX_ITEM_FIELD_TYPE', 'a.boxtype', $listDirn, $listOrder); ?>
</th>
<th width="15%">
<?php echo HTMLHelper::_('searchtools.sort', 'COM_RSTBOX_ITEM_TRIGGER', 'a.triggermethod', $listDirn, $listOrder); ?>
</th>
<th width="15%">
<?php echo HTMLHelper::_('searchtools.sort', 'COM_RSTBOX_ASSIGN_IMPRESSIONS', 'impressions', $listDirn, $listOrder); ?>
</th>
<th width="5%">
<?php echo HTMLHelper::_('searchtools.sort', 'COM_RSTBOX_ID', 'a.id', $listDirn, $listOrder); ?>
</th>
</tr>
</thead>
<tbody>
<?php
// The first check prevents the PHP Warning: count(): Parameter must be an array or an object caused in PHP 7.2
if (is_array($this->items) && count($this->items)) { ?>
<?php foreach($this->items as $i => $item): ?>
<?php
$canChange = $user->authorise('core.edit.state', 'com_rstbox.item.' . $item->id);
$hasCookie = (new Tassos\EngageBox\Cookie($item->id))->exist();
$position = is_string($item->position) && json_decode($item->position, true) ? json_decode($item->position, true) : $item->position;
?>
<tr class="row<?php echo $i % 2; ?>">
<td class="center"><?php echo HTMLHelper::_('grid.id', $i, $item->id); ?></td>
<td class="text-center">
<?php
$options = [
'task_prefix' => 'items.',
'disabled' => !$canChange,
'id' => 'state.' . $item->id
];
echo (new PublishedButton)->render((int) $item->published, $i, $options);
?>
</td>
<td class="center inlist">
<?php $color = isset($item->params->colorgroup) ? $item->params->colorgroup : ""; ?>
<span class="boxColor">
<span style="background-color: <?php echo $color ?>;"></span>
</span>
</td>
<td>
<a href="<?php echo Route::_('index.php?option=com_rstbox&task=item.edit&id='.$item->id); ?>" title="<?php echo Text::_('JACTION_EDIT'); ?>"><?php echo ucfirst($this->escape($item->name)); ?>
</a>
<?php if ($hasCookie) { ?>
<span style="margin-left:5px;" class="badge badge-warning" title="<?php echo Text::_("COM_RSTBOX_HIDDEN_BY_COOKIE_DESC") ?>">
<?php echo Text::_("COM_RSTBOX_HIDDEN_BY_COOKIE") ?>
</span>
<?php } ?>
<?php if ($item->testmode) { ?>
<span class="label hasTooltip" title="<?php echo TEXT::_("COM_RSTBOX_ITEM_TESTMODE_DESC") ?>">
<?php echo Text::_("COM_RSTBOX_ITEM_TESTMODE") ?>
</span>
<?php } ?>
<?php if ($mirror = (isset($item->params->mirror) && $item->params->mirror && isset($item->params->mirror_box) && $item->params->mirror_box) ? $item->params->mirror_box : false) { ?>
<span class="label label-warning">
<?php echo Text::sprintf('COM_RSTBOX_MIRRORING_BOX', $mirror) ?>
</span>
<?php } ?>
<div class="small"><?php echo (isset($item->params->note)) ? $item->params->note : "" ?></div>
</td>
<td>
<?php
$mode = isset($item->params->mode) ? $item->params->mode : 'popup';
echo Text::_('COM_RSTBOX_' . $mode);
?>
</td>
<td><?php echo ucfirst($item->boxtype) ?></td>
<td>
<?php
echo Text::_('COM_RSTBOX_ITEM_TRIGGER_' . $item->triggermethod) . ' / ';
$position_value = is_array($position) ? $position['desktop'] : $position;
echo Text::_('COM_RSTBOX_ITEM_BOX_POSITION_' . str_replace('-', '', $position_value));
?>
</td>
<td>
<span class="badge bg-info" title="<?php echo Text::sprintf("COM_RSTBOX_TOTAL_IMPRESSIONS", $item->impressions); ?>">
<?php echo $item->impressions; ?>
</span>
</td>
<td><?php echo $item->id ?></td>
</tr>
<?php endforeach; ?>
<?php } else { ?>
<tr>
<td align="center" colspan="9">
<div align="center">
<?php echo Text::_('COM_RSTBOX_NO_BOXES_FOUND') ?>.
<a onclick="Joomla.submitbutton('item.add');" href="#"><?php echo Text::_('COM_RSTBOX_CREATE_NEW_POPUP') ?>.</a>
</div>
</td>
</tr>
<?php } ?>
</tbody>
</table>
<?php echo $this->pagination->getListFooter(); ?>
<div>
<input type="hidden" name="task" value="" />
<input type="hidden" name="boxchecked" value="0" />
<?php echo HTMLHelper::_('form.token'); ?>
</div>
</form>
<?php include_once(JPATH_COMPONENT_ADMINISTRATOR . '/layouts/footer.php'); ?>
</div>