| Current Path : /home/digilove/public_html/administrator/components/com_acymailing/views/queue/tmpl/ |
| Current File : /home/digilove/public_html/administrator/components/com_acymailing/views/queue/tmpl/listing.php |
<?php
/**
* @package AcyMailing for Joomla!
* @version 5.5.0
* @author acyba.com
* @copyright (C) 2009-2016 ACYBA S.A.R.L. All rights reserved.
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
*/
defined('_JEXEC') or die('Restricted access');
?><div id="acy_content">
<div id="iframedoc"></div>
<?php if(empty($this->pageInfo->search) && empty($this->rows) && empty($pageInfo->selectedMail)){
acymailing_display(JText::_('ACY_EMPTY_QUEUE'),'info');
echo '</div>';
return;
}
?>
<form action="index.php?option=<?php echo ACYMAILING_COMPONENT ?>&ctrl=queue" method="post" name="adminForm" id="adminForm">
<table class="acymailing_table_options">
<tr>
<td width="100%">
<?php acymailing_listingsearch($this->pageInfo->search); ?>
</td>
<td nowrap="nowrap">
<?php echo $this->filters->mail; ?>
</td>
</tr>
</table>
<table class="acymailing_table" cellpadding="1">
<thead>
<tr>
<th class="title titlenum">
<?php echo JText::_('ACY_NUM'); ?>
</th>
<th class="title titledate">
<?php echo JHTML::_('grid.sort', JText::_('SEND_DATE'), 'a.senddate', $this->pageInfo->filter->order->dir, $this->pageInfo->filter->order->value); ?>
</th>
<th class="title">
<?php echo JHTML::_('grid.sort', JText::_('JOOMEXT_SUBJECT'), 'c.subject', $this->pageInfo->filter->order->dir, $this->pageInfo->filter->order->value); ?>
</th>
<th class="title">
<?php echo JHTML::_('grid.sort', JText::_('ACY_USER'), 'b.email', $this->pageInfo->filter->order->dir, $this->pageInfo->filter->order->value); ?>
</th>
<th class="title titletoggle">
<?php echo JHTML::_('grid.sort', JText::_('PRIORITY'), 'a.priority', $this->pageInfo->filter->order->dir, $this->pageInfo->filter->order->value); ?>
</th>
<th class="title titletoggle">
<?php echo JHTML::_('grid.sort', JText::_('TRY'), 'a.try', $this->pageInfo->filter->order->dir, $this->pageInfo->filter->order->value); ?>
</th>
<th class="title titletoggle">
<?php echo JText::_('ACY_DELETE'); ?>
</th>
<th class="title titletoggle" nowrap="nowrap">
<?php echo JHTML::_('grid.sort', JText::_('ACY_PUBLISHED'), 'c.published', $this->pageInfo->filter->order->dir, $this->pageInfo->filter->order->value); ?>
</th>
</tr>
</thead>
<tfoot>
<tr>
<td colspan="10">
<?php echo $this->pagination->getListFooter();
echo $this->pagination->getResultsCounter();
if(ACYMAILING_J30) echo '<br />'.$this->pagination->getLimitBox(); ?>
</td>
</tr>
</tfoot>
<tbody>
<?php
$k = 0;
for($i = 0, $a = count($this->rows); $i < $a; $i++){
$row =& $this->rows[$i];
$id = 'queue'.$i;
?>
<tr class="<?php echo "row$k"; ?>" id="<?php echo $id; ?>">
<td align="center" style="text-align:center">
<?php echo $this->pagination->getRowOffset($i); ?>
</td>
<td align="center" style="text-align:center">
<?php echo acymailing_getDate($row->senddate); ?>
</td>
<td>
<a class="modal" href="<?php echo acymailing_completeLink('queue&task=preview&mailid='.$row->mailid.'&subid='.$row->subid, true) ?>" rel="{handler: 'iframe', size: {x: 800, y: 590}}">
<?php echo acymailing_dispSearch($row->subject, $this->pageInfo->search); ?>
</a>
</td>
<td>
<?php
echo acymailing_tooltip(JText::_('ACY_NAME').' : '.$row->name.'<br />'.JText::_('ACY_ID').' : '.$row->subid, $row->email, 'tooltip.png', $row->name.' ( '.$row->email.' )', acymailing_completeLink('subscriber&task=edit&subid='.$row->subid));
?>
</td>
<td align="center" style="text-align:center">
<?php echo $row->priority; ?>
</td>
<td align="center" style="text-align:center">
<?php echo $row->try; ?>
</td>
<td align="center" style="text-align:center">
<?php echo $this->toggleClass->delete($id, $row->subid.'_'.$row->mailid, 'queue'); ?>
</td>
<td align="center" style="text-align:center">
<?php echo $this->toggleClass->display('published', $row->published); ?>
</td>
</tr>
<?php
$k = 1 - $k;
}
?>
</tbody>
</table>
<input type="hidden" name="option" value="<?php echo ACYMAILING_COMPONENT; ?>"/>
<input type="hidden" name="task" value=""/>
<input type="hidden" name="ctrl" value="<?php echo JRequest::getCmd('ctrl'); ?>"/>
<input type="hidden" name="boxchecked" value="0"/>
<input type="hidden" name="filter_order" value="<?php echo $this->pageInfo->filter->order->value; ?>"/>
<input type="hidden" name="filter_order_Dir" value="<?php echo $this->pageInfo->filter->order->dir; ?>"/>
<?php echo JHTML::_('form.token'); ?>
</form>
</div>