102 lines
4.5 KiB
PHP
102 lines
4.5 KiB
PHP
|
<?php
|
||
|
/*--------------------------------------------------------------------------------------------------------| www.vdm.io |------/
|
||
|
__ __ _ _____ _ _ __ __ _ _ _
|
||
|
\ \ / / | | | __ \ | | | | | \/ | | | | | | |
|
||
|
\ \ / /_ _ ___| |_ | | | | _____ _____| | ___ _ __ _ __ ___ ___ _ __ | |_ | \ / | ___| |_| |__ ___ __| |
|
||
|
\ \/ / _` / __| __| | | | |/ _ \ \ / / _ \ |/ _ \| '_ \| '_ ` _ \ / _ \ '_ \| __| | |\/| |/ _ \ __| '_ \ / _ \ / _` |
|
||
|
\ / (_| \__ \ |_ | |__| | __/\ V / __/ | (_) | |_) | | | | | | __/ | | | |_ | | | | __/ |_| | | | (_) | (_| |
|
||
|
\/ \__,_|___/\__| |_____/ \___| \_/ \___|_|\___/| .__/|_| |_| |_|\___|_| |_|\__| |_| |_|\___|\__|_| |_|\___/ \__,_|
|
||
|
| |
|
||
|
|_|
|
||
|
/-------------------------------------------------------------------------------------------------------------------------------/
|
||
|
|
||
|
@package Component Builder
|
||
|
@subpackage componentbuilder.php
|
||
|
@author Llewellyn van der Merwe <https://www.vdm.io/joomla-component-builder>
|
||
|
@my wife Roline van der Merwe <http://www.vdm.io/>
|
||
|
@copyright Copyright (C) 2015. All Rights Reserved
|
||
|
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
|
||
|
|
||
|
Builds Complex Joomla Components
|
||
|
|
||
|
/-----------------------------------------------------------------------------------------------------------------------------*/
|
||
|
|
||
|
// No direct access to this file
|
||
|
defined('_JEXEC') or die('Restricted access');
|
||
|
?>
|
||
|
###BOM###
|
||
|
|
||
|
// No direct access to this file
|
||
|
defined('_JEXEC') or die('Restricted access'); ###LICENSE_LOCKED_DEFINED###
|
||
|
|
||
|
// load tooltip behavior
|
||
|
JHtml::_('behavior.tooltip');
|
||
|
JHtml::_('behavior.multiselect');
|
||
|
JHtml::_('dropdown.init');
|
||
|
JHtml::_('formbehavior.chosen', 'select');
|
||
|
|
||
|
if ($this->saveOrder)
|
||
|
{
|
||
|
$saveOrderingUrl = 'index.php?option=com_###component###&task=###views###.saveOrderAjax&tmpl=component';
|
||
|
JHtml::_('sortablelist.sortable', '###view###List', 'adminForm', strtolower($this->listDirn), $saveOrderingUrl);
|
||
|
}
|
||
|
|
||
|
?>
|
||
|
<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>
|
||
|
<form action="<?php echo JRoute::_('index.php?option=com_###component###&view=###views###'); ?>" method="post" name="adminForm" id="adminForm">
|
||
|
<?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');?>
|
||
|
<table class="table table-striped" id="###view###List">
|
||
|
<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(
|
||
|
'title' => JText::_('COM_###COMPONENT###_###VIEWS###_BATCH_OPTIONS'),
|
||
|
'footer' => $this->loadTemplate('batch_footer')
|
||
|
),
|
||
|
$this->loadTemplate('batch_body')
|
||
|
); ?>
|
||
|
<?php endif; ?>
|
||
|
<input type="hidden" name="filter_order" value="" />
|
||
|
<input type="hidden" name="filter_order_Dir" value="" />
|
||
|
<input type="hidden" name="boxchecked" value="0" />
|
||
|
</div>
|
||
|
<?php endif; ?>
|
||
|
<input type="hidden" name="task" value="" />
|
||
|
<?php echo JHtml::_('form.token'); ?>
|
||
|
</form>
|