Stable release of v4.0.0-alpha1
First alpha release of Component Builder towards Joomla 4 (very unstable...).
This commit is contained in:
608
admin/tmpl/library/default.php
Normal file
608
admin/tmpl/library/default.php
Normal file
@ -0,0 +1,608 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Component.Builder
|
||||
*
|
||||
* @created 30th April, 2015
|
||||
* @author Llewellyn van der Merwe <https://dev.vdm.io>
|
||||
* @git Joomla Component Builder <https://git.vdm.dev/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
|
||||
*/
|
||||
|
||||
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;
|
||||
|
||||
/** @var Joomla\CMS\WebAsset\WebAssetManager $wa */
|
||||
$wa = $this->getDocument()->getWebAssetManager();
|
||||
$wa->useScript('keepalive')->useScript('form.validate');
|
||||
Html::_('bootstrap.tooltip');
|
||||
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
?>
|
||||
<script type="text/javascript">
|
||||
// waiting spinner
|
||||
var outerDiv = document.querySelector('body');
|
||||
var loadingDiv = document.createElement('div');
|
||||
loadingDiv.id = 'loading';
|
||||
loadingDiv.style.cssText = "background: rgba(255, 255, 255, .8) url('components/com_componentbuilder/assets/images/import.gif') 50% 15% no-repeat; top: " + (outerDiv.getBoundingClientRect().top + window.pageYOffset) + "px; left: " + (outerDiv.getBoundingClientRect().left + window.pageXOffset) + "px; width: " + outerDiv.offsetWidth + "px; height: " + outerDiv.offsetHeight + "px; position: fixed; opacity: 0.80; -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80); filter: alpha(opacity=80); display: none;";
|
||||
outerDiv.appendChild(loadingDiv);
|
||||
loadingDiv.style.display = 'block';
|
||||
// when page is ready remove and show
|
||||
window.addEventListener('load', function() {
|
||||
var componentLoader = document.getElementById('componentbuilder_loader');
|
||||
if (componentLoader) componentLoader.style.display = 'block';
|
||||
loadingDiv.style.display = 'none';
|
||||
});
|
||||
</script>
|
||||
<div id="componentbuilder_loader" style="display: none;">
|
||||
<form action="<?php echo Route::_('index.php?option=com_componentbuilder&layout=edit&id='. (int) $this->item->id . $this->referral); ?>" method="post" name="adminForm" id="adminForm" class="form-validate" enctype="multipart/form-data">
|
||||
|
||||
<?php echo LayoutHelper::render('library.behaviour_above', $this); ?>
|
||||
<div class="main-card">
|
||||
|
||||
<?php echo Html::_('uitab.startTabSet', 'libraryTab', ['active' => 'behaviour', 'recall' => true]); ?>
|
||||
|
||||
<?php echo Html::_('uitab.addTab', 'libraryTab', 'behaviour', Text::_('COM_COMPONENTBUILDER_LIBRARY_BEHAVIOUR', true)); ?>
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<?php echo LayoutHelper::render('library.behaviour_left', $this); ?>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<?php echo LayoutHelper::render('library.behaviour_right', $this); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<?php echo LayoutHelper::render('library.behaviour_fullwidth', $this); ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php echo Html::_('uitab.endTab'); ?>
|
||||
|
||||
<?php echo Html::_('uitab.addTab', 'libraryTab', 'files_folders_urls', Text::_('COM_COMPONENTBUILDER_LIBRARY_FILES_FOLDERS_URLS', true)); ?>
|
||||
<div class="row">
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<?php echo LayoutHelper::render('library.files_folders_urls_fullwidth', $this); ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php echo Html::_('uitab.endTab'); ?>
|
||||
|
||||
<?php echo Html::_('uitab.addTab', 'libraryTab', 'config', Text::_('COM_COMPONENTBUILDER_LIBRARY_CONFIG', true)); ?>
|
||||
<div class="row">
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<?php echo LayoutHelper::render('library.config_fullwidth', $this); ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php echo Html::_('uitab.endTab'); ?>
|
||||
|
||||
<?php echo Html::_('uitab.addTab', 'libraryTab', 'linked', Text::_('COM_COMPONENTBUILDER_LIBRARY_LINKED', true)); ?>
|
||||
<div class="row">
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<?php echo LayoutHelper::render('library.linked_fullwidth', $this); ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php echo Html::_('uitab.endTab'); ?>
|
||||
|
||||
<?php $this->ignore_fieldsets = array('details','metadata','vdmmetadata','accesscontrol'); ?>
|
||||
<?php $this->tab_name = 'libraryTab'; ?>
|
||||
<?php echo LayoutHelper::render('joomla.edit.params', $this); ?>
|
||||
|
||||
<?php if ($this->canDo->get('core.edit.created_by') || $this->canDo->get('core.edit.created') || $this->canDo->get('library.edit.state') || ($this->canDo->get('library.delete') && $this->canDo->get('library.edit.state'))) : ?>
|
||||
<?php echo Html::_('uitab.addTab', 'libraryTab', 'publishing', Text::_('COM_COMPONENTBUILDER_LIBRARY_PUBLISHING', true)); ?>
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<?php echo LayoutHelper::render('library.publishing', $this); ?>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<?php echo LayoutHelper::render('library.publlshing', $this); ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php echo Html::_('uitab.endTab'); ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->canDo->get('core.admin')) : ?>
|
||||
<?php echo Html::_('uitab.addTab', 'libraryTab', 'permissions', Text::_('COM_COMPONENTBUILDER_LIBRARY_PERMISSION', true)); ?>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<fieldset class="adminform">
|
||||
<div class="adminformlist">
|
||||
<?php foreach ($this->form->getFieldset('accesscontrol') as $field): ?>
|
||||
<div>
|
||||
<?php echo $field->label; echo $field->input;?>
|
||||
</div>
|
||||
<div class="clearfix"></div>
|
||||
<?php endforeach; ?>
|
||||
</div>
|
||||
</fieldset>
|
||||
</div>
|
||||
</div>
|
||||
<?php echo Html::_('uitab.endTab'); ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php echo Html::_('uitab.endTabSet'); ?>
|
||||
|
||||
<div>
|
||||
<input type="hidden" name="task" value="library.edit" />
|
||||
<?php echo Html::_('form.token'); ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="clearfix"></div>
|
||||
<?php echo LayoutHelper::render('library.behaviour_under', $this); ?>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
// #jform_how listeners for how_vvvvwci function
|
||||
jQuery('#jform_how').on('keyup',function()
|
||||
{
|
||||
var how_vvvvwci = jQuery("#jform_how").val();
|
||||
var target_vvvvwci = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwci(how_vvvvwci,target_vvvvwci);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var how_vvvvwci = jQuery("#jform_how").val();
|
||||
var target_vvvvwci = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwci(how_vvvvwci,target_vvvvwci);
|
||||
|
||||
});
|
||||
|
||||
// #jform_target listeners for target_vvvvwci function
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
{
|
||||
var how_vvvvwci = jQuery("#jform_how").val();
|
||||
var target_vvvvwci = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwci(how_vvvvwci,target_vvvvwci);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var how_vvvvwci = jQuery("#jform_how").val();
|
||||
var target_vvvvwci = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwci(how_vvvvwci,target_vvvvwci);
|
||||
|
||||
});
|
||||
|
||||
// #jform_how listeners for how_vvvvwck function
|
||||
jQuery('#jform_how').on('keyup',function()
|
||||
{
|
||||
var how_vvvvwck = jQuery("#jform_how").val();
|
||||
var target_vvvvwck = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwck(how_vvvvwck,target_vvvvwck);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var how_vvvvwck = jQuery("#jform_how").val();
|
||||
var target_vvvvwck = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwck(how_vvvvwck,target_vvvvwck);
|
||||
|
||||
});
|
||||
|
||||
// #jform_target listeners for target_vvvvwck function
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
{
|
||||
var how_vvvvwck = jQuery("#jform_how").val();
|
||||
var target_vvvvwck = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwck(how_vvvvwck,target_vvvvwck);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var how_vvvvwck = jQuery("#jform_how").val();
|
||||
var target_vvvvwck = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwck(how_vvvvwck,target_vvvvwck);
|
||||
|
||||
});
|
||||
|
||||
// #jform_how listeners for how_vvvvwcm function
|
||||
jQuery('#jform_how').on('keyup',function()
|
||||
{
|
||||
var how_vvvvwcm = jQuery("#jform_how").val();
|
||||
var target_vvvvwcm = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcm(how_vvvvwcm,target_vvvvwcm);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var how_vvvvwcm = jQuery("#jform_how").val();
|
||||
var target_vvvvwcm = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcm(how_vvvvwcm,target_vvvvwcm);
|
||||
|
||||
});
|
||||
|
||||
// #jform_target listeners for target_vvvvwcm function
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
{
|
||||
var how_vvvvwcm = jQuery("#jform_how").val();
|
||||
var target_vvvvwcm = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcm(how_vvvvwcm,target_vvvvwcm);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var how_vvvvwcm = jQuery("#jform_how").val();
|
||||
var target_vvvvwcm = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcm(how_vvvvwcm,target_vvvvwcm);
|
||||
|
||||
});
|
||||
|
||||
// #jform_how listeners for how_vvvvwco function
|
||||
jQuery('#jform_how').on('keyup',function()
|
||||
{
|
||||
var how_vvvvwco = jQuery("#jform_how").val();
|
||||
var target_vvvvwco = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwco(how_vvvvwco,target_vvvvwco);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var how_vvvvwco = jQuery("#jform_how").val();
|
||||
var target_vvvvwco = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwco(how_vvvvwco,target_vvvvwco);
|
||||
|
||||
});
|
||||
|
||||
// #jform_target listeners for target_vvvvwco function
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
{
|
||||
var how_vvvvwco = jQuery("#jform_how").val();
|
||||
var target_vvvvwco = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwco(how_vvvvwco,target_vvvvwco);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var how_vvvvwco = jQuery("#jform_how").val();
|
||||
var target_vvvvwco = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwco(how_vvvvwco,target_vvvvwco);
|
||||
|
||||
});
|
||||
|
||||
// #jform_how listeners for how_vvvvwcq function
|
||||
jQuery('#jform_how').on('keyup',function()
|
||||
{
|
||||
var how_vvvvwcq = jQuery("#jform_how").val();
|
||||
var target_vvvvwcq = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcq(how_vvvvwcq,target_vvvvwcq);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var how_vvvvwcq = jQuery("#jform_how").val();
|
||||
var target_vvvvwcq = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcq(how_vvvvwcq,target_vvvvwcq);
|
||||
|
||||
});
|
||||
|
||||
// #jform_target listeners for target_vvvvwcq function
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
{
|
||||
var how_vvvvwcq = jQuery("#jform_how").val();
|
||||
var target_vvvvwcq = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcq(how_vvvvwcq,target_vvvvwcq);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var how_vvvvwcq = jQuery("#jform_how").val();
|
||||
var target_vvvvwcq = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcq(how_vvvvwcq,target_vvvvwcq);
|
||||
|
||||
});
|
||||
|
||||
// #jform_target listeners for target_vvvvwcr function
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
{
|
||||
var target_vvvvwcr = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var how_vvvvwcr = jQuery("#jform_how").val();
|
||||
vvvvwcr(target_vvvvwcr,how_vvvvwcr);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var target_vvvvwcr = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var how_vvvvwcr = jQuery("#jform_how").val();
|
||||
vvvvwcr(target_vvvvwcr,how_vvvvwcr);
|
||||
|
||||
});
|
||||
|
||||
// #jform_how listeners for how_vvvvwcr function
|
||||
jQuery('#jform_how').on('keyup',function()
|
||||
{
|
||||
var target_vvvvwcr = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var how_vvvvwcr = jQuery("#jform_how").val();
|
||||
vvvvwcr(target_vvvvwcr,how_vvvvwcr);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var target_vvvvwcr = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var how_vvvvwcr = jQuery("#jform_how").val();
|
||||
vvvvwcr(target_vvvvwcr,how_vvvvwcr);
|
||||
|
||||
});
|
||||
|
||||
// #jform_how listeners for how_vvvvwcs function
|
||||
jQuery('#jform_how').on('keyup',function()
|
||||
{
|
||||
var how_vvvvwcs = jQuery("#jform_how").val();
|
||||
var target_vvvvwcs = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcs(how_vvvvwcs,target_vvvvwcs);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var how_vvvvwcs = jQuery("#jform_how").val();
|
||||
var target_vvvvwcs = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcs(how_vvvvwcs,target_vvvvwcs);
|
||||
|
||||
});
|
||||
|
||||
// #jform_target listeners for target_vvvvwcs function
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
{
|
||||
var how_vvvvwcs = jQuery("#jform_how").val();
|
||||
var target_vvvvwcs = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcs(how_vvvvwcs,target_vvvvwcs);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var how_vvvvwcs = jQuery("#jform_how").val();
|
||||
var target_vvvvwcs = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcs(how_vvvvwcs,target_vvvvwcs);
|
||||
|
||||
});
|
||||
|
||||
// #jform_target listeners for target_vvvvwct function
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
{
|
||||
var target_vvvvwct = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var how_vvvvwct = jQuery("#jform_how").val();
|
||||
vvvvwct(target_vvvvwct,how_vvvvwct);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var target_vvvvwct = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var how_vvvvwct = jQuery("#jform_how").val();
|
||||
vvvvwct(target_vvvvwct,how_vvvvwct);
|
||||
|
||||
});
|
||||
|
||||
// #jform_how listeners for how_vvvvwct function
|
||||
jQuery('#jform_how').on('keyup',function()
|
||||
{
|
||||
var target_vvvvwct = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var how_vvvvwct = jQuery("#jform_how").val();
|
||||
vvvvwct(target_vvvvwct,how_vvvvwct);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var target_vvvvwct = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var how_vvvvwct = jQuery("#jform_how").val();
|
||||
vvvvwct(target_vvvvwct,how_vvvvwct);
|
||||
|
||||
});
|
||||
|
||||
// #jform_how listeners for how_vvvvwcu function
|
||||
jQuery('#jform_how').on('keyup',function()
|
||||
{
|
||||
var how_vvvvwcu = jQuery("#jform_how").val();
|
||||
var target_vvvvwcu = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcu(how_vvvvwcu,target_vvvvwcu);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var how_vvvvwcu = jQuery("#jform_how").val();
|
||||
var target_vvvvwcu = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcu(how_vvvvwcu,target_vvvvwcu);
|
||||
|
||||
});
|
||||
|
||||
// #jform_target listeners for target_vvvvwcu function
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
{
|
||||
var how_vvvvwcu = jQuery("#jform_how").val();
|
||||
var target_vvvvwcu = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcu(how_vvvvwcu,target_vvvvwcu);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var how_vvvvwcu = jQuery("#jform_how").val();
|
||||
var target_vvvvwcu = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcu(how_vvvvwcu,target_vvvvwcu);
|
||||
|
||||
});
|
||||
|
||||
// #jform_target listeners for target_vvvvwcv function
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
{
|
||||
var target_vvvvwcv = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var how_vvvvwcv = jQuery("#jform_how").val();
|
||||
vvvvwcv(target_vvvvwcv,how_vvvvwcv);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var target_vvvvwcv = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var how_vvvvwcv = jQuery("#jform_how").val();
|
||||
vvvvwcv(target_vvvvwcv,how_vvvvwcv);
|
||||
|
||||
});
|
||||
|
||||
// #jform_how listeners for how_vvvvwcv function
|
||||
jQuery('#jform_how').on('keyup',function()
|
||||
{
|
||||
var target_vvvvwcv = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var how_vvvvwcv = jQuery("#jform_how").val();
|
||||
vvvvwcv(target_vvvvwcv,how_vvvvwcv);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_how',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var target_vvvvwcv = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var how_vvvvwcv = jQuery("#jform_how").val();
|
||||
vvvvwcv(target_vvvvwcv,how_vvvvwcv);
|
||||
|
||||
});
|
||||
|
||||
// #jform_target listeners for target_vvvvwcw function
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
{
|
||||
var target_vvvvwcw = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var type_vvvvwcw = jQuery("#jform_type input[type='radio']:checked").val();
|
||||
vvvvwcw(target_vvvvwcw,type_vvvvwcw);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var target_vvvvwcw = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var type_vvvvwcw = jQuery("#jform_type input[type='radio']:checked").val();
|
||||
vvvvwcw(target_vvvvwcw,type_vvvvwcw);
|
||||
|
||||
});
|
||||
|
||||
// #jform_type listeners for type_vvvvwcw function
|
||||
jQuery('#jform_type').on('keyup',function()
|
||||
{
|
||||
var target_vvvvwcw = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var type_vvvvwcw = jQuery("#jform_type input[type='radio']:checked").val();
|
||||
vvvvwcw(target_vvvvwcw,type_vvvvwcw);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_type',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var target_vvvvwcw = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
var type_vvvvwcw = jQuery("#jform_type input[type='radio']:checked").val();
|
||||
vvvvwcw(target_vvvvwcw,type_vvvvwcw);
|
||||
|
||||
});
|
||||
|
||||
// #jform_target listeners for target_vvvvwcy function
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
{
|
||||
var target_vvvvwcy = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcy(target_vvvvwcy);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var target_vvvvwcy = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcy(target_vvvvwcy);
|
||||
|
||||
});
|
||||
|
||||
// #jform_target listeners for target_vvvvwcz function
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
{
|
||||
var target_vvvvwcz = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcz(target_vvvvwcz);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var target_vvvvwcz = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcz(target_vvvvwcz);
|
||||
|
||||
});
|
||||
|
||||
|
||||
|
||||
<?php $numberAddconditions = range(0, count( (array) $this->item->addconditions) + 3, 1);?>
|
||||
|
||||
// for the values already set
|
||||
jQuery(document).ready(function(){
|
||||
<?php foreach($numberAddconditions as $fieldNr): ?>
|
||||
jQuery('#adminForm').on('change', '#jform_addconditions__addconditions<?php echo $fieldNr ?>__option_field',function (e) {
|
||||
e.preventDefault();
|
||||
getFieldSelectOptions(<?php echo $fieldNr ?>);
|
||||
});
|
||||
<?php endforeach; ?>
|
||||
jQuery(document).on('subform-row-add', function(event, row){
|
||||
var groupName = jQuery(row).data('group');
|
||||
var fieldName = groupName.replace(/([0-9])/g, '');
|
||||
var fieldNr = groupName.replace(/([A-z_])/g, '');
|
||||
if ('addconditions' === fieldName) {
|
||||
jQuery('#adminForm').on('change', '#jform_addconditions__addconditions'+fieldNr+'__option_field',function (e) {
|
||||
e.preventDefault();
|
||||
getFieldSelectOptions(fieldNr);
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
<?php
|
||||
$app = Factory::getApplication();
|
||||
?>
|
||||
function JRouter(link) {
|
||||
<?php
|
||||
if ($app->isClient('site'))
|
||||
{
|
||||
echo 'var url = "'. \Joomla\CMS\Uri\Uri::root() . '";';
|
||||
}
|
||||
else
|
||||
{
|
||||
echo 'var url = "";';
|
||||
}
|
||||
?>
|
||||
return url+link;
|
||||
}
|
||||
|
||||
document.addEventListener("DOMContentLoaded", function() {
|
||||
document.querySelectorAll(".loading-dots").forEach(function(loading_dots) {
|
||||
let x = 0;
|
||||
let intervalId = setInterval(function() {
|
||||
if (!loading_dots.classList.contains("loading-dots")) {
|
||||
clearInterval(intervalId);
|
||||
return;
|
||||
}
|
||||
let dots = ".".repeat(x % 8);
|
||||
loading_dots.textContent = dots;
|
||||
x++;
|
||||
}, 500);
|
||||
});
|
||||
});
|
||||
</script>
|
1
admin/tmpl/library/index.html
Normal file
1
admin/tmpl/library/index.html
Normal file
@ -0,0 +1 @@
|
||||
<html><body bgcolor="#FFFFFF"></body></html>
|
Reference in New Issue
Block a user