Stable release of v4.0.0-alpha1
First alpha release of Component Builder towards Joomla 4 (very unstable...).
This commit is contained in:
794
admin/tmpl/joomla_component/default.php
Normal file
794
admin/tmpl/joomla_component/default.php
Normal file
@ -0,0 +1,794 @@
|
||||
<?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('joomla_component.details_above', $this); ?>
|
||||
<div class="main-card">
|
||||
|
||||
<?php echo Html::_('uitab.startTabSet', 'joomla_componentTab', ['active' => 'details', 'recall' => true]); ?>
|
||||
|
||||
<?php echo Html::_('uitab.addTab', 'joomla_componentTab', 'details', Text::_('COM_COMPONENTBUILDER_JOOMLA_COMPONENT_DETAILS', true)); ?>
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<?php echo LayoutHelper::render('joomla_component.details_left', $this); ?>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<?php echo LayoutHelper::render('joomla_component.details_right', $this); ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php echo Html::_('uitab.endTab'); ?>
|
||||
|
||||
<?php echo Html::_('uitab.addTab', 'joomla_componentTab', 'settings', Text::_('COM_COMPONENTBUILDER_JOOMLA_COMPONENT_SETTINGS', true)); ?>
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<?php echo LayoutHelper::render('joomla_component.settings_left', $this); ?>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<?php echo LayoutHelper::render('joomla_component.settings_right', $this); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<?php echo LayoutHelper::render('joomla_component.settings_fullwidth', $this); ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php echo Html::_('uitab.endTab'); ?>
|
||||
|
||||
<?php echo Html::_('uitab.addTab', 'joomla_componentTab', 'admin_views', Text::_('COM_COMPONENTBUILDER_JOOMLA_COMPONENT_ADMIN_VIEWS', true)); ?>
|
||||
<div class="row">
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<?php echo LayoutHelper::render('joomla_component.admin_views_fullwidth', $this); ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php echo Html::_('uitab.endTab'); ?>
|
||||
|
||||
<?php echo Html::_('uitab.addTab', 'joomla_componentTab', 'site_views', Text::_('COM_COMPONENTBUILDER_JOOMLA_COMPONENT_SITE_VIEWS', true)); ?>
|
||||
<div class="row">
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<?php echo LayoutHelper::render('joomla_component.site_views_fullwidth', $this); ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php echo Html::_('uitab.endTab'); ?>
|
||||
|
||||
<?php echo Html::_('uitab.addTab', 'joomla_componentTab', 'custom_admin_views', Text::_('COM_COMPONENTBUILDER_JOOMLA_COMPONENT_CUSTOM_ADMIN_VIEWS', true)); ?>
|
||||
<div class="row">
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<?php echo LayoutHelper::render('joomla_component.custom_admin_views_fullwidth', $this); ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php echo Html::_('uitab.endTab'); ?>
|
||||
|
||||
<?php echo Html::_('uitab.addTab', 'joomla_componentTab', 'libs_helpers', Text::_('COM_COMPONENTBUILDER_JOOMLA_COMPONENT_LIBS_HELPERS', true)); ?>
|
||||
<div class="row">
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<?php echo LayoutHelper::render('joomla_component.libs_helpers_fullwidth', $this); ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php echo Html::_('uitab.endTab'); ?>
|
||||
|
||||
<?php echo Html::_('uitab.addTab', 'joomla_componentTab', 'dash_install', Text::_('COM_COMPONENTBUILDER_JOOMLA_COMPONENT_DASH_INSTALL', true)); ?>
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<?php echo LayoutHelper::render('joomla_component.dash_install_left', $this); ?>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<?php echo LayoutHelper::render('joomla_component.dash_install_right', $this); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<?php echo LayoutHelper::render('joomla_component.dash_install_fullwidth', $this); ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php echo Html::_('uitab.endTab'); ?>
|
||||
|
||||
<?php echo Html::_('uitab.addTab', 'joomla_componentTab', 'mysql', Text::_('COM_COMPONENTBUILDER_JOOMLA_COMPONENT_MYSQL', true)); ?>
|
||||
<div class="row">
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<?php echo LayoutHelper::render('joomla_component.mysql_fullwidth', $this); ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php echo Html::_('uitab.endTab'); ?>
|
||||
|
||||
<?php echo Html::_('uitab.addTab', 'joomla_componentTab', 'readme', Text::_('COM_COMPONENTBUILDER_JOOMLA_COMPONENT_README', true)); ?>
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<?php echo LayoutHelper::render('joomla_component.readme_left', $this); ?>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<?php echo LayoutHelper::render('joomla_component.readme_right', $this); ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php echo Html::_('uitab.endTab'); ?>
|
||||
|
||||
<?php echo Html::_('uitab.addTab', 'joomla_componentTab', 'dynamic_integration', Text::_('COM_COMPONENTBUILDER_JOOMLA_COMPONENT_DYNAMIC_INTEGRATION', true)); ?>
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<?php echo LayoutHelper::render('joomla_component.dynamic_integration_left', $this); ?>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<?php echo LayoutHelper::render('joomla_component.dynamic_integration_right', $this); ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php echo Html::_('uitab.endTab'); ?>
|
||||
|
||||
<?php echo Html::_('uitab.addTab', 'joomla_componentTab', 'dynamic_build_beta', Text::_('COM_COMPONENTBUILDER_JOOMLA_COMPONENT_DYNAMIC_BUILD_BETA', true)); ?>
|
||||
<div class="row">
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<?php echo LayoutHelper::render('joomla_component.dynamic_build_beta_fullwidth', $this); ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php echo Html::_('uitab.endTab'); ?>
|
||||
|
||||
<?php $this->ignore_fieldsets = array('details','metadata','vdmmetadata','accesscontrol'); ?>
|
||||
<?php $this->tab_name = 'joomla_componentTab'; ?>
|
||||
<?php echo LayoutHelper::render('joomla.edit.params', $this); ?>
|
||||
|
||||
<?php if ($this->canDo->get('joomla_component.edit.created_by') || $this->canDo->get('joomla_component.edit.created') || $this->canDo->get('joomla_component.edit.state') || ($this->canDo->get('joomla_component.delete') && $this->canDo->get('joomla_component.edit.state'))) : ?>
|
||||
<?php echo Html::_('uitab.addTab', 'joomla_componentTab', 'publishing', Text::_('COM_COMPONENTBUILDER_JOOMLA_COMPONENT_PUBLISHING', true)); ?>
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<?php echo LayoutHelper::render('joomla_component.publishing', $this); ?>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<?php echo LayoutHelper::render('joomla_component.metadata', $this); ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php echo Html::_('uitab.endTab'); ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->canDo->get('core.admin')) : ?>
|
||||
<?php echo Html::_('uitab.addTab', 'joomla_componentTab', 'permissions', Text::_('COM_COMPONENTBUILDER_JOOMLA_COMPONENT_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="joomla_component.edit" />
|
||||
<?php echo Html::_('form.token'); ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="clearfix"></div>
|
||||
<?php echo LayoutHelper::render('joomla_component.details_under', $this); ?>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
// #jform_add_php_helper_admin listeners for add_php_helper_admin_vvvvvvv function
|
||||
jQuery('#jform_add_php_helper_admin').on('keyup',function()
|
||||
{
|
||||
var add_php_helper_admin_vvvvvvv = jQuery("#jform_add_php_helper_admin input[type='radio']:checked").val();
|
||||
vvvvvvv(add_php_helper_admin_vvvvvvv);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_helper_admin',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_helper_admin_vvvvvvv = jQuery("#jform_add_php_helper_admin input[type='radio']:checked").val();
|
||||
vvvvvvv(add_php_helper_admin_vvvvvvv);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_helper_site listeners for add_php_helper_site_vvvvvvw function
|
||||
jQuery('#jform_add_php_helper_site').on('keyup',function()
|
||||
{
|
||||
var add_php_helper_site_vvvvvvw = jQuery("#jform_add_php_helper_site input[type='radio']:checked").val();
|
||||
vvvvvvw(add_php_helper_site_vvvvvvw);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_helper_site',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_helper_site_vvvvvvw = jQuery("#jform_add_php_helper_site input[type='radio']:checked").val();
|
||||
vvvvvvw(add_php_helper_site_vvvvvvw);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_helper_both listeners for add_php_helper_both_vvvvvvx function
|
||||
jQuery('#jform_add_php_helper_both').on('keyup',function()
|
||||
{
|
||||
var add_php_helper_both_vvvvvvx = jQuery("#jform_add_php_helper_both input[type='radio']:checked").val();
|
||||
vvvvvvx(add_php_helper_both_vvvvvvx);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_helper_both',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_helper_both_vvvvvvx = jQuery("#jform_add_php_helper_both input[type='radio']:checked").val();
|
||||
vvvvvvx(add_php_helper_both_vvvvvvx);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_css_admin listeners for add_css_admin_vvvvvvy function
|
||||
jQuery('#jform_add_css_admin').on('keyup',function()
|
||||
{
|
||||
var add_css_admin_vvvvvvy = jQuery("#jform_add_css_admin input[type='radio']:checked").val();
|
||||
vvvvvvy(add_css_admin_vvvvvvy);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_css_admin',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_css_admin_vvvvvvy = jQuery("#jform_add_css_admin input[type='radio']:checked").val();
|
||||
vvvvvvy(add_css_admin_vvvvvvy);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_css_site listeners for add_css_site_vvvvvvz function
|
||||
jQuery('#jform_add_css_site').on('keyup',function()
|
||||
{
|
||||
var add_css_site_vvvvvvz = jQuery("#jform_add_css_site input[type='radio']:checked").val();
|
||||
vvvvvvz(add_css_site_vvvvvvz);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_css_site',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_css_site_vvvvvvz = jQuery("#jform_add_css_site input[type='radio']:checked").val();
|
||||
vvvvvvz(add_css_site_vvvvvvz);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_javascript listeners for add_javascript_vvvvvwa function
|
||||
jQuery('#jform_add_javascript').on('keyup',function()
|
||||
{
|
||||
var add_javascript_vvvvvwa = jQuery("#jform_add_javascript input[type='radio']:checked").val();
|
||||
vvvvvwa(add_javascript_vvvvvwa);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_javascript',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_javascript_vvvvvwa = jQuery("#jform_add_javascript input[type='radio']:checked").val();
|
||||
vvvvvwa(add_javascript_vvvvvwa);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_sql listeners for add_sql_vvvvvwb function
|
||||
jQuery('#jform_add_sql').on('keyup',function()
|
||||
{
|
||||
var add_sql_vvvvvwb = jQuery("#jform_add_sql input[type='radio']:checked").val();
|
||||
vvvvvwb(add_sql_vvvvvwb);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_sql',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_sql_vvvvvwb = jQuery("#jform_add_sql input[type='radio']:checked").val();
|
||||
vvvvvwb(add_sql_vvvvvwb);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_sql_uninstall listeners for add_sql_uninstall_vvvvvwc function
|
||||
jQuery('#jform_add_sql_uninstall').on('keyup',function()
|
||||
{
|
||||
var add_sql_uninstall_vvvvvwc = jQuery("#jform_add_sql_uninstall input[type='radio']:checked").val();
|
||||
vvvvvwc(add_sql_uninstall_vvvvvwc);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_sql_uninstall',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_sql_uninstall_vvvvvwc = jQuery("#jform_add_sql_uninstall input[type='radio']:checked").val();
|
||||
vvvvvwc(add_sql_uninstall_vvvvvwc);
|
||||
|
||||
});
|
||||
|
||||
// #jform_emptycontributors listeners for emptycontributors_vvvvvwd function
|
||||
jQuery('#jform_emptycontributors').on('keyup',function()
|
||||
{
|
||||
var emptycontributors_vvvvvwd = jQuery("#jform_emptycontributors input[type='radio']:checked").val();
|
||||
vvvvvwd(emptycontributors_vvvvvwd);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_emptycontributors',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var emptycontributors_vvvvvwd = jQuery("#jform_emptycontributors input[type='radio']:checked").val();
|
||||
vvvvvwd(emptycontributors_vvvvvwd);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_license listeners for add_license_vvvvvwe function
|
||||
jQuery('#jform_add_license').on('keyup',function()
|
||||
{
|
||||
var add_license_vvvvvwe = jQuery("#jform_add_license input[type='radio']:checked").val();
|
||||
vvvvvwe(add_license_vvvvvwe);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_license',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_license_vvvvvwe = jQuery("#jform_add_license input[type='radio']:checked").val();
|
||||
vvvvvwe(add_license_vvvvvwe);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_admin_event listeners for add_admin_event_vvvvvwf function
|
||||
jQuery('#jform_add_admin_event').on('keyup',function()
|
||||
{
|
||||
var add_admin_event_vvvvvwf = jQuery("#jform_add_admin_event input[type='radio']:checked").val();
|
||||
vvvvvwf(add_admin_event_vvvvvwf);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_admin_event',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_admin_event_vvvvvwf = jQuery("#jform_add_admin_event input[type='radio']:checked").val();
|
||||
vvvvvwf(add_admin_event_vvvvvwf);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_site_event listeners for add_site_event_vvvvvwg function
|
||||
jQuery('#jform_add_site_event').on('keyup',function()
|
||||
{
|
||||
var add_site_event_vvvvvwg = jQuery("#jform_add_site_event input[type='radio']:checked").val();
|
||||
vvvvvwg(add_site_event_vvvvvwg);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_site_event',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_site_event_vvvvvwg = jQuery("#jform_add_site_event input[type='radio']:checked").val();
|
||||
vvvvvwg(add_site_event_vvvvvwg);
|
||||
|
||||
});
|
||||
|
||||
// #jform_addreadme listeners for addreadme_vvvvvwh function
|
||||
jQuery('#jform_addreadme').on('keyup',function()
|
||||
{
|
||||
var addreadme_vvvvvwh = jQuery("#jform_addreadme input[type='radio']:checked").val();
|
||||
vvvvvwh(addreadme_vvvvvwh);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_addreadme',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var addreadme_vvvvvwh = jQuery("#jform_addreadme input[type='radio']:checked").val();
|
||||
vvvvvwh(addreadme_vvvvvwh);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_update_server listeners for add_update_server_vvvvvwi function
|
||||
jQuery('#jform_add_update_server').on('keyup',function()
|
||||
{
|
||||
var add_update_server_vvvvvwi = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvwi(add_update_server_vvvvvwi);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_update_server',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_update_server_vvvvvwi = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvwi(add_update_server_vvvvvwi);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_sales_server listeners for add_sales_server_vvvvvwj function
|
||||
jQuery('#jform_add_sales_server').on('keyup',function()
|
||||
{
|
||||
var add_sales_server_vvvvvwj = jQuery("#jform_add_sales_server input[type='radio']:checked").val();
|
||||
vvvvvwj(add_sales_server_vvvvvwj);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_sales_server',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_sales_server_vvvvvwj = jQuery("#jform_add_sales_server input[type='radio']:checked").val();
|
||||
vvvvvwj(add_sales_server_vvvvvwj);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_license listeners for add_license_vvvvvwk function
|
||||
jQuery('#jform_add_license').on('keyup',function()
|
||||
{
|
||||
var add_license_vvvvvwk = jQuery("#jform_add_license input[type='radio']:checked").val();
|
||||
vvvvvwk(add_license_vvvvvwk);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_license',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_license_vvvvvwk = jQuery("#jform_add_license input[type='radio']:checked").val();
|
||||
vvvvvwk(add_license_vvvvvwk);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_postflight_install listeners for add_php_postflight_install_vvvvvwl function
|
||||
jQuery('#jform_add_php_postflight_install').on('keyup',function()
|
||||
{
|
||||
var add_php_postflight_install_vvvvvwl = jQuery("#jform_add_php_postflight_install input[type='radio']:checked").val();
|
||||
vvvvvwl(add_php_postflight_install_vvvvvwl);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_postflight_install',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_postflight_install_vvvvvwl = jQuery("#jform_add_php_postflight_install input[type='radio']:checked").val();
|
||||
vvvvvwl(add_php_postflight_install_vvvvvwl);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_postflight_update listeners for add_php_postflight_update_vvvvvwm function
|
||||
jQuery('#jform_add_php_postflight_update').on('keyup',function()
|
||||
{
|
||||
var add_php_postflight_update_vvvvvwm = jQuery("#jform_add_php_postflight_update input[type='radio']:checked").val();
|
||||
vvvvvwm(add_php_postflight_update_vvvvvwm);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_postflight_update',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_postflight_update_vvvvvwm = jQuery("#jform_add_php_postflight_update input[type='radio']:checked").val();
|
||||
vvvvvwm(add_php_postflight_update_vvvvvwm);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_method_uninstall listeners for add_php_method_uninstall_vvvvvwn function
|
||||
jQuery('#jform_add_php_method_uninstall').on('keyup',function()
|
||||
{
|
||||
var add_php_method_uninstall_vvvvvwn = jQuery("#jform_add_php_method_uninstall input[type='radio']:checked").val();
|
||||
vvvvvwn(add_php_method_uninstall_vvvvvwn);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_method_uninstall',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_method_uninstall_vvvvvwn = jQuery("#jform_add_php_method_uninstall input[type='radio']:checked").val();
|
||||
vvvvvwn(add_php_method_uninstall_vvvvvwn);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_preflight_install listeners for add_php_preflight_install_vvvvvwo function
|
||||
jQuery('#jform_add_php_preflight_install').on('keyup',function()
|
||||
{
|
||||
var add_php_preflight_install_vvvvvwo = jQuery("#jform_add_php_preflight_install input[type='radio']:checked").val();
|
||||
vvvvvwo(add_php_preflight_install_vvvvvwo);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_preflight_install',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_preflight_install_vvvvvwo = jQuery("#jform_add_php_preflight_install input[type='radio']:checked").val();
|
||||
vvvvvwo(add_php_preflight_install_vvvvvwo);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_preflight_update listeners for add_php_preflight_update_vvvvvwp function
|
||||
jQuery('#jform_add_php_preflight_update').on('keyup',function()
|
||||
{
|
||||
var add_php_preflight_update_vvvvvwp = jQuery("#jform_add_php_preflight_update input[type='radio']:checked").val();
|
||||
vvvvvwp(add_php_preflight_update_vvvvvwp);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_preflight_update',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_preflight_update_vvvvvwp = jQuery("#jform_add_php_preflight_update input[type='radio']:checked").val();
|
||||
vvvvvwp(add_php_preflight_update_vvvvvwp);
|
||||
|
||||
});
|
||||
|
||||
// #jform_update_server_target listeners for update_server_target_vvvvvwq function
|
||||
jQuery('#jform_update_server_target').on('keyup',function()
|
||||
{
|
||||
var update_server_target_vvvvvwq = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvwq = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvwq(update_server_target_vvvvvwq,add_update_server_vvvvvwq);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_update_server_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var update_server_target_vvvvvwq = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvwq = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvwq(update_server_target_vvvvvwq,add_update_server_vvvvvwq);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_update_server listeners for add_update_server_vvvvvwq function
|
||||
jQuery('#jform_add_update_server').on('keyup',function()
|
||||
{
|
||||
var update_server_target_vvvvvwq = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvwq = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvwq(update_server_target_vvvvvwq,add_update_server_vvvvvwq);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_update_server',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var update_server_target_vvvvvwq = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvwq = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvwq(update_server_target_vvvvvwq,add_update_server_vvvvvwq);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_update_server listeners for add_update_server_vvvvvwr function
|
||||
jQuery('#jform_add_update_server').on('keyup',function()
|
||||
{
|
||||
var add_update_server_vvvvvwr = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
var update_server_target_vvvvvwr = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
vvvvvwr(add_update_server_vvvvvwr,update_server_target_vvvvvwr);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_update_server',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_update_server_vvvvvwr = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
var update_server_target_vvvvvwr = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
vvvvvwr(add_update_server_vvvvvwr,update_server_target_vvvvvwr);
|
||||
|
||||
});
|
||||
|
||||
// #jform_update_server_target listeners for update_server_target_vvvvvwr function
|
||||
jQuery('#jform_update_server_target').on('keyup',function()
|
||||
{
|
||||
var add_update_server_vvvvvwr = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
var update_server_target_vvvvvwr = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
vvvvvwr(add_update_server_vvvvvwr,update_server_target_vvvvvwr);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_update_server_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_update_server_vvvvvwr = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
var update_server_target_vvvvvwr = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
vvvvvwr(add_update_server_vvvvvwr,update_server_target_vvvvvwr);
|
||||
|
||||
});
|
||||
|
||||
// #jform_update_server_target listeners for update_server_target_vvvvvws function
|
||||
jQuery('#jform_update_server_target').on('keyup',function()
|
||||
{
|
||||
var update_server_target_vvvvvws = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvws = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvws(update_server_target_vvvvvws,add_update_server_vvvvvws);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_update_server_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var update_server_target_vvvvvws = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvws = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvws(update_server_target_vvvvvws,add_update_server_vvvvvws);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_update_server listeners for add_update_server_vvvvvws function
|
||||
jQuery('#jform_add_update_server').on('keyup',function()
|
||||
{
|
||||
var update_server_target_vvvvvws = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvws = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvws(update_server_target_vvvvvws,add_update_server_vvvvvws);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_update_server',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var update_server_target_vvvvvws = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvws = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvws(update_server_target_vvvvvws,add_update_server_vvvvvws);
|
||||
|
||||
});
|
||||
|
||||
// #jform_update_server_target listeners for update_server_target_vvvvvwu function
|
||||
jQuery('#jform_update_server_target').on('keyup',function()
|
||||
{
|
||||
var update_server_target_vvvvvwu = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvwu = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvwu(update_server_target_vvvvvwu,add_update_server_vvvvvwu);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_update_server_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var update_server_target_vvvvvwu = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvwu = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvwu(update_server_target_vvvvvwu,add_update_server_vvvvvwu);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_update_server listeners for add_update_server_vvvvvwu function
|
||||
jQuery('#jform_add_update_server').on('keyup',function()
|
||||
{
|
||||
var update_server_target_vvvvvwu = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvwu = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvwu(update_server_target_vvvvvwu,add_update_server_vvvvvwu);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_update_server',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var update_server_target_vvvvvwu = jQuery("#jform_update_server_target input[type='radio']:checked").val();
|
||||
var add_update_server_vvvvvwu = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvwu(update_server_target_vvvvvwu,add_update_server_vvvvvwu);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_update_server listeners for add_update_server_vvvvvww function
|
||||
jQuery('#jform_add_update_server').on('keyup',function()
|
||||
{
|
||||
var add_update_server_vvvvvww = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvww(add_update_server_vvvvvww);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_update_server',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_update_server_vvvvvww = jQuery("#jform_add_update_server input[type='radio']:checked").val();
|
||||
vvvvvww(add_update_server_vvvvvww);
|
||||
|
||||
});
|
||||
|
||||
// #jform_buildcomp listeners for buildcomp_vvvvvwx function
|
||||
jQuery('#jform_buildcomp').on('keyup',function()
|
||||
{
|
||||
var buildcomp_vvvvvwx = jQuery("#jform_buildcomp input[type='radio']:checked").val();
|
||||
vvvvvwx(buildcomp_vvvvvwx);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_buildcomp',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var buildcomp_vvvvvwx = jQuery("#jform_buildcomp input[type='radio']:checked").val();
|
||||
vvvvvwx(buildcomp_vvvvvwx);
|
||||
|
||||
});
|
||||
|
||||
// #jform_dashboard_type listeners for dashboard_type_vvvvvwy function
|
||||
jQuery('#jform_dashboard_type').on('keyup',function()
|
||||
{
|
||||
var dashboard_type_vvvvvwy = jQuery("#jform_dashboard_type input[type='radio']:checked").val();
|
||||
vvvvvwy(dashboard_type_vvvvvwy);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_dashboard_type',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var dashboard_type_vvvvvwy = jQuery("#jform_dashboard_type input[type='radio']:checked").val();
|
||||
vvvvvwy(dashboard_type_vvvvvwy);
|
||||
|
||||
});
|
||||
|
||||
// #jform_dashboard_type listeners for dashboard_type_vvvvvwz function
|
||||
jQuery('#jform_dashboard_type').on('keyup',function()
|
||||
{
|
||||
var dashboard_type_vvvvvwz = jQuery("#jform_dashboard_type input[type='radio']:checked").val();
|
||||
vvvvvwz(dashboard_type_vvvvvwz);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_dashboard_type',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var dashboard_type_vvvvvwz = jQuery("#jform_dashboard_type input[type='radio']:checked").val();
|
||||
vvvvvwz(dashboard_type_vvvvvwz);
|
||||
|
||||
});
|
||||
|
||||
// #jform_translation_tool listeners for translation_tool_vvvvvxa function
|
||||
jQuery('#jform_translation_tool').on('keyup',function()
|
||||
{
|
||||
var translation_tool_vvvvvxa = jQuery("#jform_translation_tool").val();
|
||||
vvvvvxa(translation_tool_vvvvvxa);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_translation_tool',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var translation_tool_vvvvvxa = jQuery("#jform_translation_tool").val();
|
||||
vvvvvxa(translation_tool_vvvvvxa);
|
||||
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
<?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);
|
||||
});
|
||||
});
|
||||
// check when dashboard switch changes
|
||||
jQuery('#adminForm').on('change', '#jform_dashboard_type',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var dasboard_type = jQuery("#jform_dashboard_type input[type='radio']:checked").val();
|
||||
dasboardSwitch(dasboard_type);
|
||||
});
|
||||
</script>
|
1
admin/tmpl/joomla_component/index.html
Normal file
1
admin/tmpl/joomla_component/index.html
Normal file
@ -0,0 +1 @@
|
||||
<html><body bgcolor="#FFFFFF"></body></html>
|
Reference in New Issue
Block a user