2017-08-25 01:46:12 +00:00
|
|
|
<?php
|
2018-05-18 06:28:27 +00:00
|
|
|
/**
|
|
|
|
* @package Joomla.Component.Builder
|
|
|
|
*
|
|
|
|
* @created 30th April, 2015
|
|
|
|
* @author Llewellyn van der Merwe <http://www.joomlacomponentbuilder.com>
|
|
|
|
* @github Joomla Component Builder <https://github.com/vdm-io/Joomla-Component-Builder>
|
2020-02-17 20:01:02 +00:00
|
|
|
* @copyright Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
|
2018-05-18 06:28:27 +00:00
|
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
|
|
*/
|
2017-08-25 01:46:12 +00:00
|
|
|
|
|
|
|
// No direct access to this file
|
|
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
|
|
|
|
// load tooltip behavior
|
|
|
|
JHtml::_('behavior.tooltip');
|
|
|
|
JHtml::_('behavior.multiselect');
|
|
|
|
JHtml::_('dropdown.init');
|
|
|
|
JHtml::_('formbehavior.chosen', 'select');
|
|
|
|
|
|
|
|
if ($this->saveOrder)
|
|
|
|
{
|
2018-02-15 00:42:39 +00:00
|
|
|
$saveOrderingUrl = 'index.php?option=com_componentbuilder&task=servers.saveOrderAjax&tmpl=component';
|
|
|
|
JHtml::_('sortablelist.sortable', 'serverList', 'adminForm', strtolower($this->listDirn), $saveOrderingUrl);
|
2017-08-25 01:46:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|
|
|
|
<script type="text/javascript">
|
|
|
|
Joomla.orderTable = function()
|
|
|
|
{
|
|
|
|
table = document.getElementById("sortTable");
|
|
|
|
direction = document.getElementById("directionTable");
|
|
|
|
order = table.options[table.selectedIndex].value;
|
|
|
|
if (order != '<?php echo $this->listOrder; ?>')
|
|
|
|
{
|
|
|
|
dirn = 'asc';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
dirn = direction.options[direction.selectedIndex].value;
|
|
|
|
}
|
|
|
|
Joomla.tableOrdering(order, dirn, '');
|
|
|
|
}
|
|
|
|
</script>
|
2018-02-15 00:42:39 +00:00
|
|
|
<form action="<?php echo JRoute::_('index.php?option=com_componentbuilder&view=servers'); ?>" method="post" name="adminForm" id="adminForm">
|
2017-08-25 01:46:12 +00:00
|
|
|
<?php if(!empty( $this->sidebar)): ?>
|
|
|
|
<div id="j-sidebar-container" class="span2">
|
|
|
|
<?php echo $this->sidebar; ?>
|
|
|
|
</div>
|
|
|
|
<div id="j-main-container" class="span10">
|
|
|
|
<?php else : ?>
|
|
|
|
<div id="j-main-container">
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php if (empty($this->items)): ?>
|
|
|
|
<?php echo $this->loadTemplate('toolbar');?>
|
|
|
|
<div class="alert alert-no-items">
|
|
|
|
<?php echo JText::_('JGLOBAL_NO_MATCHING_RESULTS'); ?>
|
|
|
|
</div>
|
|
|
|
<?php else : ?>
|
|
|
|
<?php echo $this->loadTemplate('toolbar');?>
|
2018-02-15 00:42:39 +00:00
|
|
|
<table class="table table-striped" id="serverList">
|
2017-08-25 01:46:12 +00:00
|
|
|
<thead><?php echo $this->loadTemplate('head');?></thead>
|
|
|
|
<tfoot><?php echo $this->loadTemplate('foot');?></tfoot>
|
|
|
|
<tbody><?php echo $this->loadTemplate('body');?></tbody>
|
|
|
|
</table>
|
|
|
|
<?php //Load the batch processing form. ?>
|
|
|
|
<?php if ($this->canCreate && $this->canEdit) : ?>
|
|
|
|
<?php echo JHtml::_(
|
|
|
|
'bootstrap.renderModal',
|
|
|
|
'collapseModal',
|
|
|
|
array(
|
2018-02-15 00:42:39 +00:00
|
|
|
'title' => JText::_('COM_COMPONENTBUILDER_SERVERS_BATCH_OPTIONS'),
|
2017-08-25 01:46:12 +00:00
|
|
|
'footer' => $this->loadTemplate('batch_footer')
|
|
|
|
),
|
|
|
|
$this->loadTemplate('batch_body')
|
|
|
|
); ?>
|
|
|
|
<?php endif; ?>
|
2020-02-27 21:05:28 +00:00
|
|
|
<input type="hidden" name="filter_order" value="<?php echo $this->listOrder; ?>" />
|
|
|
|
<input type="hidden" name="filter_order_Dir" value="<?php echo $this->listDirn; ?>" />
|
2017-08-25 01:46:12 +00:00
|
|
|
<input type="hidden" name="boxchecked" value="0" />
|
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
|
|
<input type="hidden" name="task" value="" />
|
|
|
|
<?php echo JHtml::_('form.token'); ?>
|
|
|
|
</form>
|