| 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_jlexreview/views/sync/tmpl/ |
Upload File : |
<?php
/**
* @package JLex Review
* @version 4.2.3
* @copyright Copyright (c) 2013-2018 JLexArt. All rights reserved
* @license GNU General Public License version 2 or later;
* @author www.jlexart.com
*/
defined('_JEXEC') or die;
?>
<div id="syncIndex">
<p class="msg"><?php echo jtext::_('JR_SYNC_INDEX_WARNING') ?></p>
<div class="jpercent"><span>--</span>/100%</div>
<div class="jbar">
<div class="jprocess" style="width:0;"></div>
</div>
</div>
<div id="jlexreview">
<form action="<?php echo JUri::base(true).'/index.php' ?>"
method="post" name="adminForm" id="adminForm">
<div class="reviewBox nopadding">
<table class="adminlist mftable" >
<thead>
<tr>
<th width="30">#</th>
<th width="25%"><?php echo JHTML::_('grid.sort' , jtext::_('JR_OBJECT') , 's.object' , $this->lists['order_dir'] , $this->lists['order']) ?></th>
<th><?php echo JHTML::_('grid.sort' , jtext::_('JR_CREATED') , 's.created_time' , $this->lists['order_dir'] , $this->lists['order']) ?></th>
<th width="15%"><?php echo JHTML::_('grid.sort' , jtext::_('JR_PUBLISHED') , 's.published' , $this->lists['order_dir'] , $this->lists['order']) ?></th>
<th><?php echo jtext::_('JR_SYNC_LOG') ?></th>
</tr>
</thead>
<tbody>
<?php if(!empty($this->items)) : ?>
<?php
$k=0; $i=0;
$pub_states = [
1 => [
'unpublish',
'JR_PUBLISHED',
'','',
false,
'publish',
],
0 => [
'publish',
'JR_UNPUBLISHED',
'','',
false,
'unpublish',
],
];
foreach($this->items as $item):
$checked = JHtml::_('grid.id' , $i , $item->id);
$published = JHtml::_('jgrid.state', $pub_states, $item->published, $i);
?>
<tr>
<td align="center"><?php echo $checked ?></td>
<td align="center">
<a href="<?php echo $item->url2edit ?>"><?php echo $item->object ?></a>
</td>
<td align="center"><?php echo JHtml::date($item->created_time, 'Y-m-d H:i:s') ?></td>
<td align="center"><?php echo $published ?></td>
<td align="center"><?php echo $item->latest_log ?></td>
</tr>
<?php
$k=1-$k;
$i++ ;
endforeach;
?>
<?php else: ?>
<tr>
<td colspan="4" align="center"><?php echo JText::_("JR_NO_RECORD_FOUND") ?></td>
</tr>
<?php endif; ?>
</tbody>
</table>
</div>
<div align="center" style="margin-top:15px"><?php echo $this->pagination->getListFooter(); ?></div>
<input type="hidden" name="option" value="com_jlexreview">
<input type="hidden" name="view" value="sync">
<input type="hidden" name="filter_order" value="<?php echo $this->lists['order'] ; ?>" />
<input type="hidden" name="filter_order_Dir" value="<?php echo $this->lists['order_dir'] ; ?>" />
<input type="hidden" name="task" value="" />
<input type="hidden" name="boxchecked" value="0" />
</form>
</div>