Spade

Mini Shell

Directory:~$ /home/lmsyaran/www/administrator/components/com_rsmembership/views/syslogs/tmpl/
Upload File

[Home] [System Details] [Kill Me]
Current File:~$ /home/lmsyaran/www/administrator/components/com_rsmembership/views/syslogs/tmpl/default.php

<?php
/**
 * @package	RSMembership!
 * @copyright	(c) 2009 - 2016 RSJoomla!
 * @link		https://www.rsjoomla.com
 * @license	GNU General Public License
http://www.gnu.org/licenses/gpl-3.0.en.html
 */

defined('_JEXEC') or die('Restricted access');

$listOrder 	=
$this->escape($this->state->get('list.ordering'));
$listDirn 	=
$this->escape($this->state->get('list.direction'));
?>
<form action="<?php echo
JRoute::_('index.php?option=com_rsmembership&view=syslogs');
?>" method="post" name="adminForm"
id="adminForm">
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
	<?php $this->filterbar->show(); ?>
	
	<table class="table table-striped"
id="articleList">
		<thead>
		<tr>
			<th width="1%" nowrap="nowrap"><?php echo
JText::_( '#' ); ?></th>
			<th width="1%" nowrap="nowrap"><input
type="checkbox" name="checkall-toggle"
value="" title="<?php echo
JText::_('JGLOBAL_CHECK_ALL'); ?>"
onclick="Joomla.checkAll(this)" /></th>
			<th><?php echo JHtml::_('grid.sort',
'COM_RSMEMBERSHIP_DATE', 'date', $listDirn,
$listOrder); ?></th>
			<th><?php echo JHtml::_('grid.sort',
'COM_RSMEMBERSHIP_SYSLOGS_TYPE', 'type', $listDirn,
$listOrder); ?></th>
			<th><?php echo
JText::_('COM_RSMEMBERSHIP_SYSLOGS_MESSAGE'); ?></th>
		</tr>
		</thead>
		<?php foreach ($this->items as $i => $item) { ?>
			<tr class="row<?php echo $i % 2; ?>">
				<td width="1%" nowrap="nowrap"><?php echo
$this->pagination->getRowOffset($i); ?></td>
				<td width="1%" nowrap="nowrap"><?php echo
JHtml::_('grid.id', $i, $item->id); ?></td>
				<td width="1%" nowrap="nowrap"><?php echo
RSMembershipHelper::showDate($item->date); ?></td>
				<td width="1%" nowrap="nowrap">
					<?php 
						$itemType = str_replace('-', '_',
$this->escape($item->type));
						$itemType = strtoupper($itemType);
						echo JText::_('COM_RSMEMBERSHIP_SYSLOGS_TYPE_'.$itemType);

					?>
				</td>
				<td>
					<?php echo $this->escape($item->message);?>
				</td>
			</tr>
		<?php } ?>
	<tfoot>
		<tr>
			<td colspan="5"><?php echo
$this->pagination->getListFooter(); ?></td>
		</tr>
	</tfoot>
	</table>
	
	<div>
		<?php echo JHtml::_( 'form.token' ); ?>
		<input type="hidden" name="boxchecked"
value="0" />
		<input type="hidden" name="task"
value="" />
	</div>
	</div>
</form>