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
|
2022-07-09 15:45:08 +00:00
|
|
|
* @author Llewellyn van der Merwe <https://dev.vdm.io>
|
|
|
|
* @git Joomla Component Builder <https://git.vdm.dev/joomla/Component-Builder>
|
2021-03-05 03:08:47 +00:00
|
|
|
* @copyright Copyright (C) 2015 Vast Development Method. All rights reserved.
|
|
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
2024-03-09 19:52:51 +00:00
|
|
|
use Joomla\CMS\Factory;
|
|
|
|
use Joomla\CMS\Language\Text;
|
|
|
|
use Joomla\CMS\HTML\HTMLHelper as Html;
|
|
|
|
use Joomla\CMS\Layout\LayoutHelper;
|
|
|
|
use Joomla\CMS\Router\Route;
|
|
|
|
use VDM\Component\Componentbuilder\Administrator\Helper\ComponentbuilderHelper;
|
|
|
|
|
2021-03-05 03:08:47 +00:00
|
|
|
// No direct access to this file
|
2024-03-09 19:52:51 +00:00
|
|
|
defined('_JEXEC') or die;
|
2021-03-05 03:08:47 +00:00
|
|
|
|
|
|
|
if ($this->saveOrder)
|
|
|
|
{
|
|
|
|
$saveOrderingUrl = 'index.php?option=com_componentbuilder&task=templates.saveOrderAjax&tmpl=component';
|
2024-03-09 19:52:51 +00:00
|
|
|
Html::_('sortablelist.sortable', 'templateList', 'adminForm', strtolower($this->listDirn), $saveOrderingUrl);
|
2021-03-05 03:08:47 +00:00
|
|
|
}
|
|
|
|
?>
|
2024-03-09 19:52:51 +00:00
|
|
|
<form action="<?php echo Route::_('index.php?option=com_componentbuilder&view=templates'); ?>" method="post" name="adminForm" id="adminForm">
|
2020-11-29 03:43:24 +00:00
|
|
|
<div id="j-main-container">
|
2020-12-03 05:24:20 +00:00
|
|
|
<?php
|
2020-12-27 11:54:51 +00:00
|
|
|
// Add the trash helper layout
|
2024-03-09 19:52:51 +00:00
|
|
|
echo LayoutHelper::render('trashhelper', $this);
|
2020-12-03 05:24:20 +00:00
|
|
|
// Add the searchtools
|
2024-03-09 19:52:51 +00:00
|
|
|
echo LayoutHelper::render('joomla.searchtools.default', array('view' => $this));
|
2020-12-03 05:24:20 +00:00
|
|
|
?>
|
2020-11-29 03:43:24 +00:00
|
|
|
<?php if (empty($this->items)): ?>
|
|
|
|
<div class="alert alert-no-items">
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Text::_('JGLOBAL_NO_MATCHING_RESULTS'); ?>
|
2020-11-29 03:43:24 +00:00
|
|
|
</div>
|
|
|
|
<?php else : ?>
|
|
|
|
<table class="table table-striped" id="templateList">
|
|
|
|
<thead><?php echo $this->loadTemplate('head');?></thead>
|
|
|
|
<tfoot><?php echo $this->loadTemplate('foot');?></tfoot>
|
|
|
|
<tbody><?php echo $this->loadTemplate('body');?></tbody>
|
|
|
|
</table>
|
|
|
|
<input type="hidden" name="boxchecked" value="0" />
|
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
|
|
<input type="hidden" name="task" value="" />
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('form.token'); ?>
|
2018-08-23 01:37:42 +00:00
|
|
|
</form>
|
|
|
|
<script type="text/javascript">
|
|
|
|
// templates footer script
|
|
|
|
|
|
|
|
jQuery.fn.selText = function() {
|
|
|
|
var obj = this[0];
|
|
|
|
if (jQuery.browser.msie) {
|
|
|
|
var range = obj.offsetParent.createTextRange();
|
|
|
|
range.moveToElementText(obj);
|
|
|
|
range.select();
|
|
|
|
} else if (jQuery.browser.mozilla || $.browser.opera) {
|
|
|
|
var selection = obj.ownerDocument.defaultView.getSelection();
|
|
|
|
var range = obj.ownerDocument.createRange();
|
|
|
|
range.selectNodeContents(obj);
|
|
|
|
selection.removeAllRanges();
|
|
|
|
selection.addRange(range);
|
|
|
|
} else if (jQuery.browser.safari) {
|
|
|
|
var selection = obj.ownerDocument.defaultView.getSelection();
|
|
|
|
selection.setBaseAndExtent(obj, 0, obj, 1);
|
|
|
|
}
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
// make sure the code bocks are active
|
|
|
|
jQuery("code").click(function() {
|
|
|
|
jQuery(this).selText().addClass("selected");
|
|
|
|
});
|
2021-03-05 03:08:47 +00:00
|
|
|
</script>
|