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;
|
|
|
|
|
|
|
|
/** @var Joomla\CMS\WebAsset\WebAssetManager $wa */
|
|
|
|
$wa = $this->getDocument()->getWebAssetManager();
|
|
|
|
$wa->useScript('keepalive')->useScript('form.validate');
|
|
|
|
Html::_('bootstrap.tooltip');
|
|
|
|
|
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
|
|
|
|
|
|
|
?>
|
2016-05-31 05:36:31 +00:00
|
|
|
<script type="text/javascript">
|
|
|
|
// waiting spinner
|
2024-03-09 19:52:51 +00:00
|
|
|
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';
|
2016-05-31 05:36:31 +00:00
|
|
|
// when page is ready remove and show
|
2024-03-09 19:52:51 +00:00
|
|
|
window.addEventListener('load', function() {
|
|
|
|
var componentLoader = document.getElementById('componentbuilder_loader');
|
|
|
|
if (componentLoader) componentLoader.style.display = 'block';
|
|
|
|
loadingDiv.style.display = 'none';
|
2016-05-31 05:36:31 +00:00
|
|
|
});
|
|
|
|
</script>
|
2021-03-05 03:08:47 +00:00
|
|
|
<div id="componentbuilder_loader" style="display: none;">
|
2024-03-09 19:52:51 +00:00
|
|
|
<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">
|
2016-01-30 20:28:43 +00:00
|
|
|
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo LayoutHelper::render('site_view.details_above', $this); ?>
|
|
|
|
<div class="main-card">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-9">
|
2016-01-30 20:28:43 +00:00
|
|
|
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.startTabSet', 'site_viewTab', ['active' => 'details', 'recall' => true]); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.addTab', 'site_viewTab', 'details', Text::_('COM_COMPONENTBUILDER_SITE_VIEW_DETAILS', true)); ?>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-6">
|
|
|
|
<?php echo LayoutHelper::render('site_view.details_left', $this); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<div class="col-md-6">
|
|
|
|
<?php echo LayoutHelper::render('site_view.details_right', $this); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<?php echo LayoutHelper::render('site_view.details_fullwidth', $this); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.endTab'); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.addTab', 'site_viewTab', 'custom_buttons', Text::_('COM_COMPONENTBUILDER_SITE_VIEW_CUSTOM_BUTTONS', true)); ?>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-6">
|
|
|
|
<?php echo LayoutHelper::render('site_view.custom_buttons_left', $this); ?>
|
2017-03-08 04:49:54 +00:00
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<div class="col-md-6">
|
|
|
|
<?php echo LayoutHelper::render('site_view.custom_buttons_right', $this); ?>
|
2017-03-08 04:49:54 +00:00
|
|
|
</div>
|
2016-01-30 20:28:43 +00:00
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<?php echo LayoutHelper::render('site_view.custom_buttons_fullwidth', $this); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.endTab'); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.addTab', 'site_viewTab', 'javascript_css', Text::_('COM_COMPONENTBUILDER_SITE_VIEW_JAVASCRIPT_CSS', true)); ?>
|
|
|
|
<div class="row">
|
2016-01-30 20:28:43 +00:00
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<?php echo LayoutHelper::render('site_view.javascript_css_fullwidth', $this); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.endTab'); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.addTab', 'site_viewTab', 'php', Text::_('COM_COMPONENTBUILDER_SITE_VIEW_PHP', true)); ?>
|
|
|
|
<div class="row">
|
2016-01-30 20:28:43 +00:00
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<?php echo LayoutHelper::render('site_view.php_fullwidth', $this); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.endTab'); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.addTab', 'site_viewTab', 'linked_components', Text::_('COM_COMPONENTBUILDER_SITE_VIEW_LINKED_COMPONENTS', true)); ?>
|
|
|
|
<div class="row">
|
2018-01-15 15:54:05 +00:00
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<?php echo LayoutHelper::render('site_view.linked_components_fullwidth', $this); ?>
|
2018-01-15 15:54:05 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.endTab'); ?>
|
2018-01-15 15:54:05 +00:00
|
|
|
|
2018-08-23 21:51:09 +00:00
|
|
|
<?php $this->ignore_fieldsets = array('details','metadata','vdmmetadata','accesscontrol'); ?>
|
|
|
|
<?php $this->tab_name = 'site_viewTab'; ?>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo LayoutHelper::render('joomla.edit.params', $this); ?>
|
2018-08-23 21:51:09 +00:00
|
|
|
|
2020-06-25 19:22:30 +00:00
|
|
|
<?php if ($this->canDo->get('core.edit.created_by') || $this->canDo->get('core.edit.created') || $this->canDo->get('core.edit.state') || ($this->canDo->get('core.delete') && $this->canDo->get('core.edit.state'))) : ?>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.addTab', 'site_viewTab', 'publishing', Text::_('COM_COMPONENTBUILDER_SITE_VIEW_PUBLISHING', true)); ?>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-6">
|
|
|
|
<?php echo LayoutHelper::render('site_view.publishing', $this); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<div class="col-md-6">
|
|
|
|
<?php echo LayoutHelper::render('site_view.publlshing', $this); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.endTab'); ?>
|
2016-02-15 08:37:21 +00:00
|
|
|
<?php endif; ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
<?php if ($this->canDo->get('core.admin')) : ?>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.addTab', 'site_viewTab', 'permissions', Text::_('COM_COMPONENTBUILDER_SITE_VIEW_PERMISSION', true)); ?>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
2016-01-30 20:28:43 +00:00
|
|
|
<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>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.endTab'); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('uitab.endTabSet'); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
<div>
|
|
|
|
<input type="hidden" name="task" value="site_view.edit" />
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo Html::_('form.token'); ?>
|
2016-01-30 20:28:43 +00:00
|
|
|
</div>
|
2017-04-26 08:55:02 +00:00
|
|
|
</div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<div class="col-md-3"><div class="m-md-3">
|
|
|
|
<?php echo LayoutHelper::render('site_view.details_rightside', $this); ?>
|
|
|
|
</div></div>
|
|
|
|
</div>
|
2016-01-30 20:28:43 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="clearfix"></div>
|
2024-03-09 19:52:51 +00:00
|
|
|
<?php echo LayoutHelper::render('site_view.details_under', $this); ?>
|
2021-03-05 03:08:47 +00:00
|
|
|
</form>
|
2016-05-31 05:11:07 +00:00
|
|
|
</div>
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
2024-04-21 23:15:03 +00:00
|
|
|
// #jform_add_php_view listeners for add_php_view_vvvvvyv function
|
2016-01-30 20:28:43 +00:00
|
|
|
jQuery('#jform_add_php_view').on('keyup',function()
|
|
|
|
{
|
2024-04-21 23:15:03 +00:00
|
|
|
var add_php_view_vvvvvyv = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
|
|
|
vvvvvyv(add_php_view_vvvvvyv);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_add_php_view',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-21 23:15:03 +00:00
|
|
|
var add_php_view_vvvvvyv = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
|
|
|
vvvvvyv(add_php_view_vvvvvyv);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-21 23:15:03 +00:00
|
|
|
// #jform_add_php_jview_display listeners for add_php_jview_display_vvvvvyw function
|
2016-01-30 20:28:43 +00:00
|
|
|
jQuery('#jform_add_php_jview_display').on('keyup',function()
|
|
|
|
{
|
2024-04-21 23:15:03 +00:00
|
|
|
var add_php_jview_display_vvvvvyw = jQuery("#jform_add_php_jview_display input[type='radio']:checked").val();
|
|
|
|
vvvvvyw(add_php_jview_display_vvvvvyw);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_add_php_jview_display',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-21 23:15:03 +00:00
|
|
|
var add_php_jview_display_vvvvvyw = jQuery("#jform_add_php_jview_display input[type='radio']:checked").val();
|
|
|
|
vvvvvyw(add_php_jview_display_vvvvvyw);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-21 23:15:03 +00:00
|
|
|
// #jform_add_php_jview listeners for add_php_jview_vvvvvyx function
|
2016-01-30 20:28:43 +00:00
|
|
|
jQuery('#jform_add_php_jview').on('keyup',function()
|
|
|
|
{
|
2024-04-21 23:15:03 +00:00
|
|
|
var add_php_jview_vvvvvyx = jQuery("#jform_add_php_jview input[type='radio']:checked").val();
|
|
|
|
vvvvvyx(add_php_jview_vvvvvyx);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_add_php_jview',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-21 23:15:03 +00:00
|
|
|
var add_php_jview_vvvvvyx = jQuery("#jform_add_php_jview input[type='radio']:checked").val();
|
|
|
|
vvvvvyx(add_php_jview_vvvvvyx);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-21 23:15:03 +00:00
|
|
|
// #jform_add_php_document listeners for add_php_document_vvvvvyy function
|
2016-01-30 20:28:43 +00:00
|
|
|
jQuery('#jform_add_php_document').on('keyup',function()
|
|
|
|
{
|
2024-04-21 23:15:03 +00:00
|
|
|
var add_php_document_vvvvvyy = jQuery("#jform_add_php_document input[type='radio']:checked").val();
|
|
|
|
vvvvvyy(add_php_document_vvvvvyy);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_add_php_document',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-21 23:15:03 +00:00
|
|
|
var add_php_document_vvvvvyy = jQuery("#jform_add_php_document input[type='radio']:checked").val();
|
|
|
|
vvvvvyy(add_php_document_vvvvvyy);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-21 23:15:03 +00:00
|
|
|
// #jform_add_css_document listeners for add_css_document_vvvvvyz function
|
2016-01-30 20:28:43 +00:00
|
|
|
jQuery('#jform_add_css_document').on('keyup',function()
|
|
|
|
{
|
2024-04-21 23:15:03 +00:00
|
|
|
var add_css_document_vvvvvyz = jQuery("#jform_add_css_document input[type='radio']:checked").val();
|
|
|
|
vvvvvyz(add_css_document_vvvvvyz);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_add_css_document',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-21 23:15:03 +00:00
|
|
|
var add_css_document_vvvvvyz = jQuery("#jform_add_css_document input[type='radio']:checked").val();
|
|
|
|
vvvvvyz(add_css_document_vvvvvyz);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-21 23:15:03 +00:00
|
|
|
// #jform_add_javascript_file listeners for add_javascript_file_vvvvvza function
|
2017-12-14 23:10:47 +00:00
|
|
|
jQuery('#jform_add_javascript_file').on('keyup',function()
|
|
|
|
{
|
2024-04-21 23:15:03 +00:00
|
|
|
var add_javascript_file_vvvvvza = jQuery("#jform_add_javascript_file input[type='radio']:checked").val();
|
|
|
|
vvvvvza(add_javascript_file_vvvvvza);
|
2017-12-14 23:10:47 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_add_javascript_file',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-21 23:15:03 +00:00
|
|
|
var add_javascript_file_vvvvvza = jQuery("#jform_add_javascript_file input[type='radio']:checked").val();
|
|
|
|
vvvvvza(add_javascript_file_vvvvvza);
|
2017-12-14 23:10:47 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-21 23:15:03 +00:00
|
|
|
// #jform_add_js_document listeners for add_js_document_vvvvvzb function
|
2016-01-30 20:28:43 +00:00
|
|
|
jQuery('#jform_add_js_document').on('keyup',function()
|
|
|
|
{
|
2024-04-21 23:15:03 +00:00
|
|
|
var add_js_document_vvvvvzb = jQuery("#jform_add_js_document input[type='radio']:checked").val();
|
|
|
|
vvvvvzb(add_js_document_vvvvvzb);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_add_js_document',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-21 23:15:03 +00:00
|
|
|
var add_js_document_vvvvvzb = jQuery("#jform_add_js_document input[type='radio']:checked").val();
|
|
|
|
vvvvvzb(add_js_document_vvvvvzb);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-21 23:15:03 +00:00
|
|
|
// #jform_add_css listeners for add_css_vvvvvzc function
|
2016-01-30 20:28:43 +00:00
|
|
|
jQuery('#jform_add_css').on('keyup',function()
|
|
|
|
{
|
2024-04-21 23:15:03 +00:00
|
|
|
var add_css_vvvvvzc = jQuery("#jform_add_css input[type='radio']:checked").val();
|
|
|
|
vvvvvzc(add_css_vvvvvzc);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_add_css',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-21 23:15:03 +00:00
|
|
|
var add_css_vvvvvzc = jQuery("#jform_add_css input[type='radio']:checked").val();
|
|
|
|
vvvvvzc(add_css_vvvvvzc);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-21 23:15:03 +00:00
|
|
|
// #jform_add_php_ajax listeners for add_php_ajax_vvvvvzd function
|
2016-01-30 20:28:43 +00:00
|
|
|
jQuery('#jform_add_php_ajax').on('keyup',function()
|
|
|
|
{
|
2024-04-21 23:15:03 +00:00
|
|
|
var add_php_ajax_vvvvvzd = jQuery("#jform_add_php_ajax input[type='radio']:checked").val();
|
|
|
|
vvvvvzd(add_php_ajax_vvvvvzd);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_add_php_ajax',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-21 23:15:03 +00:00
|
|
|
var add_php_ajax_vvvvvzd = jQuery("#jform_add_php_ajax input[type='radio']:checked").val();
|
|
|
|
vvvvvzd(add_php_ajax_vvvvvzd);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-21 23:15:03 +00:00
|
|
|
// #jform_add_custom_button listeners for add_custom_button_vvvvvze function
|
2016-01-30 20:28:43 +00:00
|
|
|
jQuery('#jform_add_custom_button').on('keyup',function()
|
|
|
|
{
|
2024-04-21 23:15:03 +00:00
|
|
|
var add_custom_button_vvvvvze = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
|
|
|
|
vvvvvze(add_custom_button_vvvvvze);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_add_custom_button',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-21 23:15:03 +00:00
|
|
|
var add_custom_button_vvvvvze = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
|
|
|
|
vvvvvze(add_custom_button_vvvvvze);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2024-04-21 23:15:03 +00:00
|
|
|
// #jform_button_position listeners for button_position_vvvvvzf function
|
2017-10-12 00:50:14 +00:00
|
|
|
jQuery('#jform_button_position').on('keyup',function()
|
|
|
|
{
|
2024-04-21 23:15:03 +00:00
|
|
|
var button_position_vvvvvzf = jQuery("#jform_button_position").val();
|
|
|
|
vvvvvzf(button_position_vvvvvzf);
|
2017-10-12 00:50:14 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
jQuery('#adminForm').on('change', '#jform_button_position',function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
2024-04-21 23:15:03 +00:00
|
|
|
var button_position_vvvvvzf = jQuery("#jform_button_position").val();
|
|
|
|
vvvvvzf(button_position_vvvvvzf);
|
2017-10-12 00:50:14 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-01-30 20:28:43 +00:00
|
|
|
|
2017-02-01 13:17:04 +00:00
|
|
|
|
2017-11-26 00:29:08 +00:00
|
|
|
jQuery(function() {
|
|
|
|
jQuery('#open-libraries').html('<a href="index.php?option=com_componentbuilder&view=libraries"><?php echo JText::_('COM_COMPONENTBUILDER_LIBRARIES'); ?></a>');
|
|
|
|
});
|
|
|
|
jQuery('#jform_snippet').closest('.input-append').addClass('jform_snippet_input_width');
|
|
|
|
jQuery('#jform_main_get').closest('.input-append').addClass('jform_main_get_input_width');
|
|
|
|
jQuery('#jform_dynamic_get').closest('.input-append').addClass('jform_dynamic_get_input_width');
|
2018-03-11 02:44:43 +00:00
|
|
|
jQuery(function() {
|
2016-01-30 20:28:43 +00:00
|
|
|
jQuery("code").click(function() {
|
|
|
|
jQuery(this).selText().addClass("selected");
|
|
|
|
});
|
|
|
|
});
|
2017-11-26 00:29:08 +00:00
|
|
|
jQuery('#adminForm').on('change', '#jform_libraries',function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
getSnippets();
|
|
|
|
});
|
2018-02-27 12:17:38 +00:00
|
|
|
|
2016-01-30 20:28:43 +00:00
|
|
|
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;
|
2018-02-27 12:17:38 +00:00
|
|
|
}
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
jQuery('#adminForm').on('change', '#jform_snippet',function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
// get type value
|
|
|
|
var snippetId = jQuery("#jform_snippet option:selected").val();
|
|
|
|
getSnippetDetails(snippetId);
|
|
|
|
});
|
|
|
|
|
|
|
|
jQuery(document).ready(function() {
|
|
|
|
// get type value
|
|
|
|
var snippetId = jQuery("#jform_snippet option:selected").val();
|
|
|
|
getSnippetDetails(snippetId);
|
|
|
|
});
|
|
|
|
|
|
|
|
jQuery('#adminForm').on('change', '#jform_dynamic_get',function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
// get type value
|
|
|
|
var dynamicId = jQuery("#jform_dynamic_get option:selected").val();
|
|
|
|
getDynamicValues(dynamicId);
|
|
|
|
});
|
|
|
|
|
|
|
|
jQuery(document).ready(function() {
|
|
|
|
// get type value
|
|
|
|
var dynamicId = jQuery("#jform_dynamic_get option:selected").val();
|
|
|
|
getDynamicValues(dynamicId);
|
|
|
|
});
|
|
|
|
|
|
|
|
jQuery(document).ready(function() {
|
|
|
|
// get type value
|
|
|
|
getLayoutDetails(9999);
|
|
|
|
getTemplateDetails(9999);
|
2017-11-26 00:29:08 +00:00
|
|
|
});
|
|
|
|
// some lang strings
|
2024-03-09 19:52:51 +00:00
|
|
|
var select_a_snippet = '<?php echo Text::_('COM_COMPONENTBUILDER_SELECT_A_SNIPPET'); ?>';
|
|
|
|
var create_a_snippet = '<?php echo Text::_('COM_COMPONENTBUILDER_CREATE_A_SNIPPET'); ?>';
|
|
|
|
|
|
|
|
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);
|
|
|
|
});
|
2019-07-08 16:05:54 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
<?php
|
2024-03-09 19:52:51 +00:00
|
|
|
$app = Factory::getApplication();
|
2019-07-08 16:05:54 +00:00
|
|
|
?>
|
|
|
|
function JRouter(link) {
|
|
|
|
<?php
|
2020-01-03 01:41:55 +00:00
|
|
|
if ($app->isClient('site'))
|
2019-07-08 16:05:54 +00:00
|
|
|
{
|
2024-03-09 19:52:51 +00:00
|
|
|
echo 'var url = "'. \Joomla\CMS\Uri\Uri::root() . '";';
|
2019-07-08 16:05:54 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
echo 'var url = "";';
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
return url+link;
|
|
|
|
}
|
2018-12-19 04:06:36 +00:00
|
|
|
jQuery(document).ready(function(){
|
|
|
|
jQuery(document).on('subform-row-add', function(event, row){
|
|
|
|
getIconImage(jQuery(row).find('.icomoon342'));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
function getIconImage(field) {
|
|
|
|
// get the ID
|
|
|
|
var id = jQuery(field).attr('id');
|
|
|
|
// remove old one
|
|
|
|
jQuery('#image_'+id).remove();
|
|
|
|
// get value
|
|
|
|
var value = jQuery('#'+id).val();
|
|
|
|
// build new one
|
|
|
|
var span = '<span id="image_'+id+'" class="icon-'+value+'" style="position: absolute; top: 8px; right: -20px;"></span>';
|
|
|
|
// add the icon
|
|
|
|
jQuery('#'+id+'_chzn').append(span);
|
|
|
|
}
|
2021-03-05 03:08:47 +00:00
|
|
|
</script>
|