2016-01-30 20:28:43 +00:00
|
|
|
<?php
|
2021-03-05 03:08:47 +00:00
|
|
|
/**
|
|
|
|
* @package Joomla.Component.Builder
|
|
|
|
*
|
|
|
|
* @created 30th April, 2015
|
|
|
|
* @author Llewellyn van der Merwe <http://www.joomlacomponentbuilder.com>
|
2021-12-21 14:44:50 +00:00
|
|
|
* @gitea Joomla Component Builder <https://git.vdm.dev/joomla/Component-Builder>
|
2021-03-05 03:08:47 +00:00
|
|
|
* @github Joomla Component Builder <https://github.com/vdm-io/Joomla-Component-Builder>
|
|
|
|
* @copyright Copyright (C) 2015 Vast Development Method. All rights reserved.
|
|
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
// No direct access to this file
|
|
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
|
2020-11-29 00:00:20 +00:00
|
|
|
JHtml::_('behavior.multiselect');
|
|
|
|
JHtml::_('dropdown.init');
|
2020-12-03 05:24:20 +00:00
|
|
|
JHtml::_('formbehavior.chosen', '.multipleAdminviewsfiltertype', null, array('placeholder_text_multiple' => '- ' . JText::_('COM_COMPONENTBUILDER_FILTER_SELECT_TYPE') . ' -'));
|
|
|
|
JHtml::_('formbehavior.chosen', '.multipleAccessLevels', null, array('placeholder_text_multiple' => '- ' . JText::_('COM_COMPONENTBUILDER_FILTER_SELECT_ACCESS') . ' -'));
|
2021-03-05 03:08:47 +00:00
|
|
|
JHtml::_('formbehavior.chosen', 'select');
|
|
|
|
if ($this->saveOrder)
|
|
|
|
{
|
|
|
|
$saveOrderingUrl = 'index.php?option=com_componentbuilder&task=admin_views.saveOrderAjax&tmpl=component';
|
|
|
|
JHtml::_('sortablelist.sortable', 'admin_viewList', 'adminForm', strtolower($this->listDirn), $saveOrderingUrl);
|
|
|
|
}
|
|
|
|
?>
|
2020-11-29 03:43:24 +00:00
|
|
|
<form action="<?php echo JRoute::_('index.php?option=com_componentbuilder&view=admin_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; ?>
|
2020-12-03 05:24:20 +00:00
|
|
|
<?php
|
2020-12-27 11:54:51 +00:00
|
|
|
// Add the trash helper layout
|
|
|
|
echo JLayoutHelper::render('trashhelper', $this);
|
2020-12-03 05:24:20 +00:00
|
|
|
// Add the searchtools
|
|
|
|
echo JLayoutHelper::render('joomla.searchtools.default', array('view' => $this));
|
|
|
|
?>
|
2020-11-29 03:43:24 +00:00
|
|
|
<?php if (empty($this->items)): ?>
|
|
|
|
<div class="alert alert-no-items">
|
|
|
|
<?php echo JText::_('JGLOBAL_NO_MATCHING_RESULTS'); ?>
|
|
|
|
</div>
|
|
|
|
<?php else : ?>
|
|
|
|
<table class="table table-striped" id="admin_viewList">
|
|
|
|
<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_COMPONENTBUILDER_ADMIN_VIEWS_BATCH_OPTIONS'),
|
|
|
|
'footer' => $this->loadTemplate('batch_footer')
|
|
|
|
),
|
|
|
|
$this->loadTemplate('batch_body')
|
|
|
|
); ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
<input type="hidden" name="boxchecked" value="0" />
|
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
|
|
<input type="hidden" name="task" value="" />
|
|
|
|
<?php echo JHtml::_('form.token'); ?>
|
2018-09-20 19:17:07 +00:00
|
|
|
</form>
|
|
|
|
<script type="text/javascript">
|
|
|
|
// admin_views footer script
|
|
|
|
|
|
|
|
// waiting spinner
|
|
|
|
var outerDiv = jQuery('body');
|
|
|
|
jQuery('<div id="loading"></div>')
|
|
|
|
.css("background", "rgba(255, 255, 255, .8) url('components/com_componentbuilder/assets/images/import.gif') 50% 15% no-repeat")
|
|
|
|
.css("top", outerDiv.position().top - jQuery(window).scrollTop())
|
|
|
|
.css("left", outerDiv.position().left - jQuery(window).scrollLeft())
|
|
|
|
.css("width", outerDiv.width())
|
|
|
|
.css("height", outerDiv.height())
|
|
|
|
.css("position", "fixed")
|
|
|
|
.css("opacity", "0.80")
|
|
|
|
.css("-ms-filter", "progid:DXImageTransform.Microsoft.Alpha(Opacity = 80)")
|
|
|
|
.css("filter", "alpha(opacity = 80)")
|
|
|
|
.css("display", "none")
|
|
|
|
.appendTo(outerDiv);
|
|
|
|
// when the expand button is clicked
|
|
|
|
jQuery('#toolbar').on('click',"button.button-expand-2", function(e){
|
|
|
|
jQuery('#loading').show();
|
|
|
|
});
|
2021-03-05 03:08:47 +00:00
|
|
|
</script>
|