<?php defined('KOOWA') or die('Restricted access'); ?>
<?php @script(@$mediaurl.'/com_socialengine/js/admin.js'); ?>
<form action="<?= @route()?>" method="post" name="adminForm">
<input type="hidden" name="id" value="" />
<input type="hidden" name="action" value="" />
<table class="adminlist" style="clear: both;">
<thead>
<tr>
<th width="1%"><?= @text('NUM'); ?></th>
<th width="1%"><input type="checkbox" name="toggle" value="" onclick="checkAll(<?= count(@$applications); ?>);" /></th>
<th><?= @helper('grid.sort', 'Name', 'name', @$state->direction, @$state->order); ?></th>
<th width="5%"><?= @helper('grid.sort', 'Component', 'component', @$state->direction, @$state->order); ?></th>
<th width="5%" nowrap="nowrap">
<?= @helper('grid.sort', 'Order', 'order', @$state->direction, @$state->order ); ?>
<a title="Save Order" href="#" onclick="javascript:AdminForm.saveOrder(<?= count(@$applications) ?>)">
<img src="<?= KFactory::get('lib.joomla.uri')->base() ?>/images/filesave.png" />
</a>
</th>
<th width="1%" nowrap="nowrap"><?= @helper('grid.sort', 'Enabled', 'enabled', @$state->direction, @$state->order); ?></th>
<th width="1%" nowrap="nowrap"><?= @helper('grid.sort', 'Global', 'global', @$state->direction, @$state->order); ?></th>
<th width="5%"><?= @helper('grid.sort', 'ID', 'id', @$state->direction, @$state->order); ?></th>
</tr>
</thead>
<tbody>
<?= @template('default_items'); ?>
<?php if (!@$applications->getTotal()) : ?>
<tr>
<td colspan="8" align="center">
<?= @text('No applications found'); ?>
</td>
</tr>
<?php endif; ?>
</tbody>
<tfoot>
<tr>
<td colspan="8">
<?= @helper('admin::com.default.helper.paginator.pagination', @$applications->getTotal(), @$applications->getOffset(), @$applications->getLimit()) ?>
</td>
</tr>
</tfoot>
</table>
</form>