Added the option to customize the import of data per view.
This commit is contained in:
@@ -9,8 +9,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage submitbutton.js
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage edit.php
|
||||
@@ -107,6 +107,16 @@ $componentParams = JComponentHelper::getParams('com_componentbuilder');
|
||||
</div>
|
||||
<?php echo JHtml::_('bootstrap.endTab'); ?>
|
||||
|
||||
<?php echo JHtml::_('bootstrap.addTab', 'admin_viewTab', 'custom_import', JText::_('COM_COMPONENTBUILDER_ADMIN_VIEW_CUSTOM_IMPORT', true)); ?>
|
||||
<div class="row-fluid form-horizontal-desktop">
|
||||
</div>
|
||||
<div class="row-fluid form-horizontal-desktop">
|
||||
<div class="span12">
|
||||
<?php echo JLayoutHelper::render('admin_view.custom_import_fullwidth', $this); ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php echo JHtml::_('bootstrap.endTab'); ?>
|
||||
|
||||
<?php if ($this->canDo->get('core.delete') || $this->canDo->get('core.edit.created_by') || $this->canDo->get('core.edit.state') || $this->canDo->get('core.edit.created')) : ?>
|
||||
<?php echo JHtml::_('bootstrap.addTab', 'admin_viewTab', 'publishing', JText::_('COM_COMPONENTBUILDER_ADMIN_VIEW_PUBLISHING', true)); ?>
|
||||
<div class="row-fluid form-horizontal-desktop">
|
||||
@@ -506,6 +516,36 @@ jQuery('#adminForm').on('change', '#jform_add_sql',function (e)
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_custom_import listeners for add_custom_import_vvvvvxf function
|
||||
jQuery('#jform_add_custom_import').on('keyup',function()
|
||||
{
|
||||
var add_custom_import_vvvvvxf = jQuery("#jform_add_custom_import input[type='radio']:checked").val();
|
||||
vvvvvxf(add_custom_import_vvvvvxf);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_custom_import',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_custom_import_vvvvvxf = jQuery("#jform_add_custom_import input[type='radio']:checked").val();
|
||||
vvvvvxf(add_custom_import_vvvvvxf);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_custom_import listeners for add_custom_import_vvvvvxg function
|
||||
jQuery('#jform_add_custom_import').on('keyup',function()
|
||||
{
|
||||
var add_custom_import_vvvvvxg = jQuery("#jform_add_custom_import input[type='radio']:checked").val();
|
||||
vvvvvxg(add_custom_import_vvvvvxg);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_custom_import',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_custom_import_vvvvvxg = jQuery("#jform_add_custom_import input[type='radio']:checked").val();
|
||||
vvvvvxg(add_custom_import_vvvvvxg);
|
||||
|
||||
});
|
||||
|
||||
|
||||
<?php $fieldNrs = range(1,500,1); ?>
|
||||
jQuery('#jform_addconditions_modal').on('show.bs.modal', function (e) {
|
||||
@@ -526,5 +566,11 @@ jQuery('#jform_addtables_modal').on('show.bs.modal', function (e) {
|
||||
});
|
||||
<?php endforeach; ?>
|
||||
});
|
||||
|
||||
// #jform_add_custom_import listeners
|
||||
jQuery('#jform_add_custom_import').on('change',function()
|
||||
{
|
||||
var valueSwitch = jQuery("#jform_add_custom_import input[type='radio']:checked").val();
|
||||
getImportScripts(valueSwitch);
|
||||
|
||||
});
|
||||
</script>
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage view.html.php
|
||||
@@ -72,7 +72,7 @@ class ComponentbuilderViewAdmin_view extends JViewLegacy
|
||||
}
|
||||
|
||||
// Get Linked view data
|
||||
$this->vxafields = $this->get('Vxafields');
|
||||
$this->vxdfields = $this->get('Vxdfields');
|
||||
|
||||
// Set the toolbar
|
||||
$this->addToolBar();
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_batch_body.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_batch_footer.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_body.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_foot.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_head.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_toolbar.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage view.html.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage view.html.php
|
||||
|
@@ -9,8 +9,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage submitbutton.js
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage edit.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage view.html.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_main.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_vdm.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage view.html.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_batch_body.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_batch_footer.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_body.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_foot.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_head.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_toolbar.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage view.html.php
|
||||
|
@@ -9,8 +9,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage submitbutton.js
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage edit.php
|
||||
@@ -128,123 +128,123 @@ $componentParams = JComponentHelper::getParams('com_componentbuilder');
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
// #jform_add_php_view listeners for add_php_view_vvvvvxf function
|
||||
// #jform_add_php_view listeners for add_php_view_vvvvvxh function
|
||||
jQuery('#jform_add_php_view').on('keyup',function()
|
||||
{
|
||||
var add_php_view_vvvvvxf = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvvxf(add_php_view_vvvvvxf);
|
||||
var add_php_view_vvvvvxh = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvvxh(add_php_view_vvvvvxh);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_view',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_view_vvvvvxf = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvvxf(add_php_view_vvvvvxf);
|
||||
var add_php_view_vvvvvxh = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvvxh(add_php_view_vvvvvxh);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_jview_display listeners for add_php_jview_display_vvvvvxg function
|
||||
// #jform_add_php_jview_display listeners for add_php_jview_display_vvvvvxi function
|
||||
jQuery('#jform_add_php_jview_display').on('keyup',function()
|
||||
{
|
||||
var add_php_jview_display_vvvvvxg = jQuery("#jform_add_php_jview_display input[type='radio']:checked").val();
|
||||
vvvvvxg(add_php_jview_display_vvvvvxg);
|
||||
var add_php_jview_display_vvvvvxi = jQuery("#jform_add_php_jview_display input[type='radio']:checked").val();
|
||||
vvvvvxi(add_php_jview_display_vvvvvxi);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_jview_display',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_jview_display_vvvvvxg = jQuery("#jform_add_php_jview_display input[type='radio']:checked").val();
|
||||
vvvvvxg(add_php_jview_display_vvvvvxg);
|
||||
var add_php_jview_display_vvvvvxi = jQuery("#jform_add_php_jview_display input[type='radio']:checked").val();
|
||||
vvvvvxi(add_php_jview_display_vvvvvxi);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_jview listeners for add_php_jview_vvvvvxh function
|
||||
// #jform_add_php_jview listeners for add_php_jview_vvvvvxj function
|
||||
jQuery('#jform_add_php_jview').on('keyup',function()
|
||||
{
|
||||
var add_php_jview_vvvvvxh = jQuery("#jform_add_php_jview input[type='radio']:checked").val();
|
||||
vvvvvxh(add_php_jview_vvvvvxh);
|
||||
var add_php_jview_vvvvvxj = jQuery("#jform_add_php_jview input[type='radio']:checked").val();
|
||||
vvvvvxj(add_php_jview_vvvvvxj);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_jview',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_jview_vvvvvxh = jQuery("#jform_add_php_jview input[type='radio']:checked").val();
|
||||
vvvvvxh(add_php_jview_vvvvvxh);
|
||||
var add_php_jview_vvvvvxj = jQuery("#jform_add_php_jview input[type='radio']:checked").val();
|
||||
vvvvvxj(add_php_jview_vvvvvxj);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_document listeners for add_php_document_vvvvvxi function
|
||||
// #jform_add_php_document listeners for add_php_document_vvvvvxk function
|
||||
jQuery('#jform_add_php_document').on('keyup',function()
|
||||
{
|
||||
var add_php_document_vvvvvxi = jQuery("#jform_add_php_document input[type='radio']:checked").val();
|
||||
vvvvvxi(add_php_document_vvvvvxi);
|
||||
var add_php_document_vvvvvxk = jQuery("#jform_add_php_document input[type='radio']:checked").val();
|
||||
vvvvvxk(add_php_document_vvvvvxk);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_document',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_document_vvvvvxi = jQuery("#jform_add_php_document input[type='radio']:checked").val();
|
||||
vvvvvxi(add_php_document_vvvvvxi);
|
||||
var add_php_document_vvvvvxk = jQuery("#jform_add_php_document input[type='radio']:checked").val();
|
||||
vvvvvxk(add_php_document_vvvvvxk);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_css_document listeners for add_css_document_vvvvvxj function
|
||||
// #jform_add_css_document listeners for add_css_document_vvvvvxl function
|
||||
jQuery('#jform_add_css_document').on('keyup',function()
|
||||
{
|
||||
var add_css_document_vvvvvxj = jQuery("#jform_add_css_document input[type='radio']:checked").val();
|
||||
vvvvvxj(add_css_document_vvvvvxj);
|
||||
var add_css_document_vvvvvxl = jQuery("#jform_add_css_document input[type='radio']:checked").val();
|
||||
vvvvvxl(add_css_document_vvvvvxl);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_css_document',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_css_document_vvvvvxj = jQuery("#jform_add_css_document input[type='radio']:checked").val();
|
||||
vvvvvxj(add_css_document_vvvvvxj);
|
||||
var add_css_document_vvvvvxl = jQuery("#jform_add_css_document input[type='radio']:checked").val();
|
||||
vvvvvxl(add_css_document_vvvvvxl);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_js_document listeners for add_js_document_vvvvvxk function
|
||||
// #jform_add_js_document listeners for add_js_document_vvvvvxm function
|
||||
jQuery('#jform_add_js_document').on('keyup',function()
|
||||
{
|
||||
var add_js_document_vvvvvxk = jQuery("#jform_add_js_document input[type='radio']:checked").val();
|
||||
vvvvvxk(add_js_document_vvvvvxk);
|
||||
var add_js_document_vvvvvxm = jQuery("#jform_add_js_document input[type='radio']:checked").val();
|
||||
vvvvvxm(add_js_document_vvvvvxm);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_js_document',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_js_document_vvvvvxk = jQuery("#jform_add_js_document input[type='radio']:checked").val();
|
||||
vvvvvxk(add_js_document_vvvvvxk);
|
||||
var add_js_document_vvvvvxm = jQuery("#jform_add_js_document input[type='radio']:checked").val();
|
||||
vvvvvxm(add_js_document_vvvvvxm);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_custom_button listeners for add_custom_button_vvvvvxl function
|
||||
// #jform_add_custom_button listeners for add_custom_button_vvvvvxn function
|
||||
jQuery('#jform_add_custom_button').on('keyup',function()
|
||||
{
|
||||
var add_custom_button_vvvvvxl = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
|
||||
vvvvvxl(add_custom_button_vvvvvxl);
|
||||
var add_custom_button_vvvvvxn = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
|
||||
vvvvvxn(add_custom_button_vvvvvxn);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_custom_button',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_custom_button_vvvvvxl = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
|
||||
vvvvvxl(add_custom_button_vvvvvxl);
|
||||
var add_custom_button_vvvvvxn = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
|
||||
vvvvvxn(add_custom_button_vvvvvxn);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_css listeners for add_css_vvvvvxm function
|
||||
// #jform_add_css listeners for add_css_vvvvvxo function
|
||||
jQuery('#jform_add_css').on('keyup',function()
|
||||
{
|
||||
var add_css_vvvvvxm = jQuery("#jform_add_css input[type='radio']:checked").val();
|
||||
vvvvvxm(add_css_vvvvvxm);
|
||||
var add_css_vvvvvxo = jQuery("#jform_add_css input[type='radio']:checked").val();
|
||||
vvvvvxo(add_css_vvvvvxo);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_css',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_css_vvvvvxm = jQuery("#jform_add_css input[type='radio']:checked").val();
|
||||
vvvvvxm(add_css_vvvvvxm);
|
||||
var add_css_vvvvvxo = jQuery("#jform_add_css input[type='radio']:checked").val();
|
||||
vvvvvxo(add_css_vvvvvxo);
|
||||
|
||||
});
|
||||
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage view.html.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_batch_body.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_batch_footer.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_body.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_foot.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_head.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_toolbar.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage view.html.php
|
||||
|
@@ -9,8 +9,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage submitbutton.js
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage edit.php
|
||||
@@ -126,48 +126,18 @@ $componentParams = JComponentHelper::getParams('com_componentbuilder');
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
// #jform_gettype listeners for gettype_vvvvvxy function
|
||||
// #jform_gettype listeners for gettype_vvvvvya function
|
||||
jQuery('#jform_gettype').on('keyup',function()
|
||||
{
|
||||
var gettype_vvvvvxy = jQuery("#jform_gettype").val();
|
||||
vvvvvxy(gettype_vvvvvxy);
|
||||
var gettype_vvvvvya = jQuery("#jform_gettype").val();
|
||||
vvvvvya(gettype_vvvvvya);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var gettype_vvvvvxy = jQuery("#jform_gettype").val();
|
||||
vvvvvxy(gettype_vvvvvxy);
|
||||
|
||||
});
|
||||
|
||||
// #jform_main_source listeners for main_source_vvvvvxz function
|
||||
jQuery('#jform_main_source').on('keyup',function()
|
||||
{
|
||||
var main_source_vvvvvxz = jQuery("#jform_main_source").val();
|
||||
vvvvvxz(main_source_vvvvvxz);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_main_source',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var main_source_vvvvvxz = jQuery("#jform_main_source").val();
|
||||
vvvvvxz(main_source_vvvvvxz);
|
||||
|
||||
});
|
||||
|
||||
// #jform_main_source listeners for main_source_vvvvvya function
|
||||
jQuery('#jform_main_source').on('keyup',function()
|
||||
{
|
||||
var main_source_vvvvvya = jQuery("#jform_main_source").val();
|
||||
vvvvvya(main_source_vvvvvya);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_main_source',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var main_source_vvvvvya = jQuery("#jform_main_source").val();
|
||||
vvvvvya(main_source_vvvvvya);
|
||||
var gettype_vvvvvya = jQuery("#jform_gettype").val();
|
||||
vvvvvya(gettype_vvvvvya);
|
||||
|
||||
});
|
||||
|
||||
@@ -201,52 +171,33 @@ jQuery('#adminForm').on('change', '#jform_main_source',function (e)
|
||||
|
||||
});
|
||||
|
||||
// #jform_addcalculation listeners for addcalculation_vvvvvyd function
|
||||
jQuery('#jform_addcalculation').on('keyup',function()
|
||||
// #jform_main_source listeners for main_source_vvvvvyd function
|
||||
jQuery('#jform_main_source').on('keyup',function()
|
||||
{
|
||||
var addcalculation_vvvvvyd = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
||||
vvvvvyd(addcalculation_vvvvvyd);
|
||||
var main_source_vvvvvyd = jQuery("#jform_main_source").val();
|
||||
vvvvvyd(main_source_vvvvvyd);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_addcalculation',function (e)
|
||||
jQuery('#adminForm').on('change', '#jform_main_source',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var addcalculation_vvvvvyd = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
||||
vvvvvyd(addcalculation_vvvvvyd);
|
||||
var main_source_vvvvvyd = jQuery("#jform_main_source").val();
|
||||
vvvvvyd(main_source_vvvvvyd);
|
||||
|
||||
});
|
||||
|
||||
// #jform_addcalculation listeners for addcalculation_vvvvvye function
|
||||
jQuery('#jform_addcalculation').on('keyup',function()
|
||||
// #jform_main_source listeners for main_source_vvvvvye function
|
||||
jQuery('#jform_main_source').on('keyup',function()
|
||||
{
|
||||
var addcalculation_vvvvvye = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
||||
var gettype_vvvvvye = jQuery("#jform_gettype").val();
|
||||
vvvvvye(addcalculation_vvvvvye,gettype_vvvvvye);
|
||||
var main_source_vvvvvye = jQuery("#jform_main_source").val();
|
||||
vvvvvye(main_source_vvvvvye);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_addcalculation',function (e)
|
||||
jQuery('#adminForm').on('change', '#jform_main_source',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var addcalculation_vvvvvye = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
||||
var gettype_vvvvvye = jQuery("#jform_gettype").val();
|
||||
vvvvvye(addcalculation_vvvvvye,gettype_vvvvvye);
|
||||
|
||||
});
|
||||
|
||||
// #jform_gettype listeners for gettype_vvvvvye function
|
||||
jQuery('#jform_gettype').on('keyup',function()
|
||||
{
|
||||
var addcalculation_vvvvvye = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
||||
var gettype_vvvvvye = jQuery("#jform_gettype").val();
|
||||
vvvvvye(addcalculation_vvvvvye,gettype_vvvvvye);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var addcalculation_vvvvvye = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
||||
var gettype_vvvvvye = jQuery("#jform_gettype").val();
|
||||
vvvvvye(addcalculation_vvvvvye,gettype_vvvvvye);
|
||||
var main_source_vvvvvye = jQuery("#jform_main_source").val();
|
||||
vvvvvye(main_source_vvvvvye);
|
||||
|
||||
});
|
||||
|
||||
@@ -254,278 +205,327 @@ jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
||||
jQuery('#jform_addcalculation').on('keyup',function()
|
||||
{
|
||||
var addcalculation_vvvvvyf = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyf = jQuery("#jform_gettype").val();
|
||||
vvvvvyf(addcalculation_vvvvvyf,gettype_vvvvvyf);
|
||||
vvvvvyf(addcalculation_vvvvvyf);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_addcalculation',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var addcalculation_vvvvvyf = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyf = jQuery("#jform_gettype").val();
|
||||
vvvvvyf(addcalculation_vvvvvyf,gettype_vvvvvyf);
|
||||
vvvvvyf(addcalculation_vvvvvyf);
|
||||
|
||||
});
|
||||
|
||||
// #jform_gettype listeners for gettype_vvvvvyf function
|
||||
// #jform_addcalculation listeners for addcalculation_vvvvvyg function
|
||||
jQuery('#jform_addcalculation').on('keyup',function()
|
||||
{
|
||||
var addcalculation_vvvvvyg = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyg = jQuery("#jform_gettype").val();
|
||||
vvvvvyg(addcalculation_vvvvvyg,gettype_vvvvvyg);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_addcalculation',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var addcalculation_vvvvvyg = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyg = jQuery("#jform_gettype").val();
|
||||
vvvvvyg(addcalculation_vvvvvyg,gettype_vvvvvyg);
|
||||
|
||||
});
|
||||
|
||||
// #jform_gettype listeners for gettype_vvvvvyg function
|
||||
jQuery('#jform_gettype').on('keyup',function()
|
||||
{
|
||||
var addcalculation_vvvvvyf = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyf = jQuery("#jform_gettype").val();
|
||||
vvvvvyf(addcalculation_vvvvvyf,gettype_vvvvvyf);
|
||||
var addcalculation_vvvvvyg = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyg = jQuery("#jform_gettype").val();
|
||||
vvvvvyg(addcalculation_vvvvvyg,gettype_vvvvvyg);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var addcalculation_vvvvvyf = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyf = jQuery("#jform_gettype").val();
|
||||
vvvvvyf(addcalculation_vvvvvyf,gettype_vvvvvyf);
|
||||
var addcalculation_vvvvvyg = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyg = jQuery("#jform_gettype").val();
|
||||
vvvvvyg(addcalculation_vvvvvyg,gettype_vvvvvyg);
|
||||
|
||||
});
|
||||
|
||||
// #jform_main_source listeners for main_source_vvvvvyi function
|
||||
// #jform_addcalculation listeners for addcalculation_vvvvvyh function
|
||||
jQuery('#jform_addcalculation').on('keyup',function()
|
||||
{
|
||||
var addcalculation_vvvvvyh = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyh = jQuery("#jform_gettype").val();
|
||||
vvvvvyh(addcalculation_vvvvvyh,gettype_vvvvvyh);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_addcalculation',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var addcalculation_vvvvvyh = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyh = jQuery("#jform_gettype").val();
|
||||
vvvvvyh(addcalculation_vvvvvyh,gettype_vvvvvyh);
|
||||
|
||||
});
|
||||
|
||||
// #jform_gettype listeners for gettype_vvvvvyh function
|
||||
jQuery('#jform_gettype').on('keyup',function()
|
||||
{
|
||||
var addcalculation_vvvvvyh = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyh = jQuery("#jform_gettype").val();
|
||||
vvvvvyh(addcalculation_vvvvvyh,gettype_vvvvvyh);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var addcalculation_vvvvvyh = jQuery("#jform_addcalculation input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyh = jQuery("#jform_gettype").val();
|
||||
vvvvvyh(addcalculation_vvvvvyh,gettype_vvvvvyh);
|
||||
|
||||
});
|
||||
|
||||
// #jform_main_source listeners for main_source_vvvvvyk function
|
||||
jQuery('#jform_main_source').on('keyup',function()
|
||||
{
|
||||
var main_source_vvvvvyi = jQuery("#jform_main_source").val();
|
||||
vvvvvyi(main_source_vvvvvyi);
|
||||
var main_source_vvvvvyk = jQuery("#jform_main_source").val();
|
||||
vvvvvyk(main_source_vvvvvyk);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_main_source',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var main_source_vvvvvyi = jQuery("#jform_main_source").val();
|
||||
vvvvvyi(main_source_vvvvvyi);
|
||||
var main_source_vvvvvyk = jQuery("#jform_main_source").val();
|
||||
vvvvvyk(main_source_vvvvvyk);
|
||||
|
||||
});
|
||||
|
||||
// #jform_main_source listeners for main_source_vvvvvyj function
|
||||
// #jform_main_source listeners for main_source_vvvvvyl function
|
||||
jQuery('#jform_main_source').on('keyup',function()
|
||||
{
|
||||
var main_source_vvvvvyj = jQuery("#jform_main_source").val();
|
||||
vvvvvyj(main_source_vvvvvyj);
|
||||
var main_source_vvvvvyl = jQuery("#jform_main_source").val();
|
||||
vvvvvyl(main_source_vvvvvyl);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_main_source',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var main_source_vvvvvyj = jQuery("#jform_main_source").val();
|
||||
vvvvvyj(main_source_vvvvvyj);
|
||||
var main_source_vvvvvyl = jQuery("#jform_main_source").val();
|
||||
vvvvvyl(main_source_vvvvvyl);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_before_getitem listeners for add_php_before_getitem_vvvvvyk function
|
||||
// #jform_add_php_before_getitem listeners for add_php_before_getitem_vvvvvym function
|
||||
jQuery('#jform_add_php_before_getitem').on('keyup',function()
|
||||
{
|
||||
var add_php_before_getitem_vvvvvyk = jQuery("#jform_add_php_before_getitem input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyk = jQuery("#jform_gettype").val();
|
||||
vvvvvyk(add_php_before_getitem_vvvvvyk,gettype_vvvvvyk);
|
||||
var add_php_before_getitem_vvvvvym = jQuery("#jform_add_php_before_getitem input[type='radio']:checked").val();
|
||||
var gettype_vvvvvym = jQuery("#jform_gettype").val();
|
||||
vvvvvym(add_php_before_getitem_vvvvvym,gettype_vvvvvym);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_before_getitem',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_before_getitem_vvvvvyk = jQuery("#jform_add_php_before_getitem input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyk = jQuery("#jform_gettype").val();
|
||||
vvvvvyk(add_php_before_getitem_vvvvvyk,gettype_vvvvvyk);
|
||||
var add_php_before_getitem_vvvvvym = jQuery("#jform_add_php_before_getitem input[type='radio']:checked").val();
|
||||
var gettype_vvvvvym = jQuery("#jform_gettype").val();
|
||||
vvvvvym(add_php_before_getitem_vvvvvym,gettype_vvvvvym);
|
||||
|
||||
});
|
||||
|
||||
// #jform_gettype listeners for gettype_vvvvvyk function
|
||||
// #jform_gettype listeners for gettype_vvvvvym function
|
||||
jQuery('#jform_gettype').on('keyup',function()
|
||||
{
|
||||
var add_php_before_getitem_vvvvvyk = jQuery("#jform_add_php_before_getitem input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyk = jQuery("#jform_gettype").val();
|
||||
vvvvvyk(add_php_before_getitem_vvvvvyk,gettype_vvvvvyk);
|
||||
var add_php_before_getitem_vvvvvym = jQuery("#jform_add_php_before_getitem input[type='radio']:checked").val();
|
||||
var gettype_vvvvvym = jQuery("#jform_gettype").val();
|
||||
vvvvvym(add_php_before_getitem_vvvvvym,gettype_vvvvvym);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_before_getitem_vvvvvyk = jQuery("#jform_add_php_before_getitem input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyk = jQuery("#jform_gettype").val();
|
||||
vvvvvyk(add_php_before_getitem_vvvvvyk,gettype_vvvvvyk);
|
||||
var add_php_before_getitem_vvvvvym = jQuery("#jform_add_php_before_getitem input[type='radio']:checked").val();
|
||||
var gettype_vvvvvym = jQuery("#jform_gettype").val();
|
||||
vvvvvym(add_php_before_getitem_vvvvvym,gettype_vvvvvym);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_after_getitem listeners for add_php_after_getitem_vvvvvyl function
|
||||
// #jform_add_php_after_getitem listeners for add_php_after_getitem_vvvvvyn function
|
||||
jQuery('#jform_add_php_after_getitem').on('keyup',function()
|
||||
{
|
||||
var add_php_after_getitem_vvvvvyl = jQuery("#jform_add_php_after_getitem input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyl = jQuery("#jform_gettype").val();
|
||||
vvvvvyl(add_php_after_getitem_vvvvvyl,gettype_vvvvvyl);
|
||||
var add_php_after_getitem_vvvvvyn = jQuery("#jform_add_php_after_getitem input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyn = jQuery("#jform_gettype").val();
|
||||
vvvvvyn(add_php_after_getitem_vvvvvyn,gettype_vvvvvyn);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_after_getitem',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_after_getitem_vvvvvyl = jQuery("#jform_add_php_after_getitem input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyl = jQuery("#jform_gettype").val();
|
||||
vvvvvyl(add_php_after_getitem_vvvvvyl,gettype_vvvvvyl);
|
||||
|
||||
});
|
||||
|
||||
// #jform_gettype listeners for gettype_vvvvvyl function
|
||||
jQuery('#jform_gettype').on('keyup',function()
|
||||
{
|
||||
var add_php_after_getitem_vvvvvyl = jQuery("#jform_add_php_after_getitem input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyl = jQuery("#jform_gettype").val();
|
||||
vvvvvyl(add_php_after_getitem_vvvvvyl,gettype_vvvvvyl);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_after_getitem_vvvvvyl = jQuery("#jform_add_php_after_getitem input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyl = jQuery("#jform_gettype").val();
|
||||
vvvvvyl(add_php_after_getitem_vvvvvyl,gettype_vvvvvyl);
|
||||
var add_php_after_getitem_vvvvvyn = jQuery("#jform_add_php_after_getitem input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyn = jQuery("#jform_gettype").val();
|
||||
vvvvvyn(add_php_after_getitem_vvvvvyn,gettype_vvvvvyn);
|
||||
|
||||
});
|
||||
|
||||
// #jform_gettype listeners for gettype_vvvvvyn function
|
||||
jQuery('#jform_gettype').on('keyup',function()
|
||||
{
|
||||
var add_php_after_getitem_vvvvvyn = jQuery("#jform_add_php_after_getitem input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyn = jQuery("#jform_gettype").val();
|
||||
vvvvvyn(gettype_vvvvvyn);
|
||||
vvvvvyn(add_php_after_getitem_vvvvvyn,gettype_vvvvvyn);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_after_getitem_vvvvvyn = jQuery("#jform_add_php_after_getitem input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyn = jQuery("#jform_gettype").val();
|
||||
vvvvvyn(gettype_vvvvvyn);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_getlistquery listeners for add_php_getlistquery_vvvvvyo function
|
||||
jQuery('#jform_add_php_getlistquery').on('keyup',function()
|
||||
{
|
||||
var add_php_getlistquery_vvvvvyo = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyo = jQuery("#jform_gettype").val();
|
||||
vvvvvyo(add_php_getlistquery_vvvvvyo,gettype_vvvvvyo);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_getlistquery',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_getlistquery_vvvvvyo = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyo = jQuery("#jform_gettype").val();
|
||||
vvvvvyo(add_php_getlistquery_vvvvvyo,gettype_vvvvvyo);
|
||||
|
||||
});
|
||||
|
||||
// #jform_gettype listeners for gettype_vvvvvyo function
|
||||
jQuery('#jform_gettype').on('keyup',function()
|
||||
{
|
||||
var add_php_getlistquery_vvvvvyo = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyo = jQuery("#jform_gettype").val();
|
||||
vvvvvyo(add_php_getlistquery_vvvvvyo,gettype_vvvvvyo);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_getlistquery_vvvvvyo = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyo = jQuery("#jform_gettype").val();
|
||||
vvvvvyo(add_php_getlistquery_vvvvvyo,gettype_vvvvvyo);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_before_getitems listeners for add_php_before_getitems_vvvvvyp function
|
||||
jQuery('#jform_add_php_before_getitems').on('keyup',function()
|
||||
{
|
||||
var add_php_before_getitems_vvvvvyp = jQuery("#jform_add_php_before_getitems input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyp = jQuery("#jform_gettype").val();
|
||||
vvvvvyp(add_php_before_getitems_vvvvvyp,gettype_vvvvvyp);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_before_getitems',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_before_getitems_vvvvvyp = jQuery("#jform_add_php_before_getitems input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyp = jQuery("#jform_gettype").val();
|
||||
vvvvvyp(add_php_before_getitems_vvvvvyp,gettype_vvvvvyp);
|
||||
vvvvvyn(add_php_after_getitem_vvvvvyn,gettype_vvvvvyn);
|
||||
|
||||
});
|
||||
|
||||
// #jform_gettype listeners for gettype_vvvvvyp function
|
||||
jQuery('#jform_gettype').on('keyup',function()
|
||||
{
|
||||
var add_php_before_getitems_vvvvvyp = jQuery("#jform_add_php_before_getitems input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyp = jQuery("#jform_gettype").val();
|
||||
vvvvvyp(add_php_before_getitems_vvvvvyp,gettype_vvvvvyp);
|
||||
vvvvvyp(gettype_vvvvvyp);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_before_getitems_vvvvvyp = jQuery("#jform_add_php_before_getitems input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyp = jQuery("#jform_gettype").val();
|
||||
vvvvvyp(add_php_before_getitems_vvvvvyp,gettype_vvvvvyp);
|
||||
vvvvvyp(gettype_vvvvvyp);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_after_getitems listeners for add_php_after_getitems_vvvvvyq function
|
||||
jQuery('#jform_add_php_after_getitems').on('keyup',function()
|
||||
// #jform_add_php_getlistquery listeners for add_php_getlistquery_vvvvvyq function
|
||||
jQuery('#jform_add_php_getlistquery').on('keyup',function()
|
||||
{
|
||||
var add_php_after_getitems_vvvvvyq = jQuery("#jform_add_php_after_getitems input[type='radio']:checked").val();
|
||||
var add_php_getlistquery_vvvvvyq = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyq = jQuery("#jform_gettype").val();
|
||||
vvvvvyq(add_php_after_getitems_vvvvvyq,gettype_vvvvvyq);
|
||||
vvvvvyq(add_php_getlistquery_vvvvvyq,gettype_vvvvvyq);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_after_getitems',function (e)
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_getlistquery',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_after_getitems_vvvvvyq = jQuery("#jform_add_php_after_getitems input[type='radio']:checked").val();
|
||||
var add_php_getlistquery_vvvvvyq = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyq = jQuery("#jform_gettype").val();
|
||||
vvvvvyq(add_php_after_getitems_vvvvvyq,gettype_vvvvvyq);
|
||||
vvvvvyq(add_php_getlistquery_vvvvvyq,gettype_vvvvvyq);
|
||||
|
||||
});
|
||||
|
||||
// #jform_gettype listeners for gettype_vvvvvyq function
|
||||
jQuery('#jform_gettype').on('keyup',function()
|
||||
{
|
||||
var add_php_after_getitems_vvvvvyq = jQuery("#jform_add_php_after_getitems input[type='radio']:checked").val();
|
||||
var add_php_getlistquery_vvvvvyq = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyq = jQuery("#jform_gettype").val();
|
||||
vvvvvyq(add_php_after_getitems_vvvvvyq,gettype_vvvvvyq);
|
||||
vvvvvyq(add_php_getlistquery_vvvvvyq,gettype_vvvvvyq);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_after_getitems_vvvvvyq = jQuery("#jform_add_php_after_getitems input[type='radio']:checked").val();
|
||||
var add_php_getlistquery_vvvvvyq = jQuery("#jform_add_php_getlistquery input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyq = jQuery("#jform_gettype").val();
|
||||
vvvvvyq(add_php_after_getitems_vvvvvyq,gettype_vvvvvyq);
|
||||
vvvvvyq(add_php_getlistquery_vvvvvyq,gettype_vvvvvyq);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_before_getitems listeners for add_php_before_getitems_vvvvvyr function
|
||||
jQuery('#jform_add_php_before_getitems').on('keyup',function()
|
||||
{
|
||||
var add_php_before_getitems_vvvvvyr = jQuery("#jform_add_php_before_getitems input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyr = jQuery("#jform_gettype").val();
|
||||
vvvvvyr(add_php_before_getitems_vvvvvyr,gettype_vvvvvyr);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_before_getitems',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_before_getitems_vvvvvyr = jQuery("#jform_add_php_before_getitems input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyr = jQuery("#jform_gettype").val();
|
||||
vvvvvyr(add_php_before_getitems_vvvvvyr,gettype_vvvvvyr);
|
||||
|
||||
});
|
||||
|
||||
// #jform_gettype listeners for gettype_vvvvvyr function
|
||||
jQuery('#jform_gettype').on('keyup',function()
|
||||
{
|
||||
var add_php_before_getitems_vvvvvyr = jQuery("#jform_add_php_before_getitems input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyr = jQuery("#jform_gettype").val();
|
||||
vvvvvyr(add_php_before_getitems_vvvvvyr,gettype_vvvvvyr);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_before_getitems_vvvvvyr = jQuery("#jform_add_php_before_getitems input[type='radio']:checked").val();
|
||||
var gettype_vvvvvyr = jQuery("#jform_gettype").val();
|
||||
vvvvvyr(add_php_before_getitems_vvvvvyr,gettype_vvvvvyr);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_after_getitems listeners for add_php_after_getitems_vvvvvys function
|
||||
jQuery('#jform_add_php_after_getitems').on('keyup',function()
|
||||
{
|
||||
var add_php_after_getitems_vvvvvys = jQuery("#jform_add_php_after_getitems input[type='radio']:checked").val();
|
||||
var gettype_vvvvvys = jQuery("#jform_gettype").val();
|
||||
vvvvvys(add_php_after_getitems_vvvvvys,gettype_vvvvvys);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_after_getitems',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_after_getitems_vvvvvys = jQuery("#jform_add_php_after_getitems input[type='radio']:checked").val();
|
||||
var gettype_vvvvvys = jQuery("#jform_gettype").val();
|
||||
vvvvvys(add_php_after_getitems_vvvvvys,gettype_vvvvvys);
|
||||
|
||||
});
|
||||
|
||||
// #jform_gettype listeners for gettype_vvvvvys function
|
||||
jQuery('#jform_gettype').on('keyup',function()
|
||||
{
|
||||
var add_php_after_getitems_vvvvvys = jQuery("#jform_add_php_after_getitems input[type='radio']:checked").val();
|
||||
var gettype_vvvvvys = jQuery("#jform_gettype").val();
|
||||
vvvvvys(gettype_vvvvvys);
|
||||
vvvvvys(add_php_after_getitems_vvvvvys,gettype_vvvvvys);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_after_getitems_vvvvvys = jQuery("#jform_add_php_after_getitems input[type='radio']:checked").val();
|
||||
var gettype_vvvvvys = jQuery("#jform_gettype").val();
|
||||
vvvvvys(gettype_vvvvvys);
|
||||
vvvvvys(add_php_after_getitems_vvvvvys,gettype_vvvvvys);
|
||||
|
||||
});
|
||||
|
||||
// #jform_gettype listeners for gettype_vvvvvyt function
|
||||
// #jform_gettype listeners for gettype_vvvvvyu function
|
||||
jQuery('#jform_gettype').on('keyup',function()
|
||||
{
|
||||
var gettype_vvvvvyt = jQuery("#jform_gettype").val();
|
||||
vvvvvyt(gettype_vvvvvyt);
|
||||
var gettype_vvvvvyu = jQuery("#jform_gettype").val();
|
||||
vvvvvyu(gettype_vvvvvyu);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var gettype_vvvvvyt = jQuery("#jform_gettype").val();
|
||||
vvvvvyt(gettype_vvvvvyt);
|
||||
var gettype_vvvvvyu = jQuery("#jform_gettype").val();
|
||||
vvvvvyu(gettype_vvvvvyu);
|
||||
|
||||
});
|
||||
|
||||
// #jform_gettype listeners for gettype_vvvvvyv function
|
||||
jQuery('#jform_gettype').on('keyup',function()
|
||||
{
|
||||
var gettype_vvvvvyv = jQuery("#jform_gettype").val();
|
||||
vvvvvyv(gettype_vvvvvyv);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_gettype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var gettype_vvvvvyv = jQuery("#jform_gettype").val();
|
||||
vvvvvyv(gettype_vvvvvyv);
|
||||
|
||||
});
|
||||
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage view.html.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_batch_body.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_batch_footer.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_body.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_foot.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_head.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_toolbar.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage view.html.php
|
||||
|
@@ -9,8 +9,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage submitbutton.js
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage edit.php
|
||||
@@ -113,142 +113,142 @@ $componentParams = JComponentHelper::getParams('com_componentbuilder');
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
// #jform_datalenght listeners for datalenght_vvvvvyu function
|
||||
// #jform_datalenght listeners for datalenght_vvvvvyw function
|
||||
jQuery('#jform_datalenght').on('keyup',function()
|
||||
{
|
||||
var datalenght_vvvvvyu = jQuery("#jform_datalenght").val();
|
||||
vvvvvyu(datalenght_vvvvvyu);
|
||||
var datalenght_vvvvvyw = jQuery("#jform_datalenght").val();
|
||||
vvvvvyw(datalenght_vvvvvyw);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_datalenght',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var datalenght_vvvvvyu = jQuery("#jform_datalenght").val();
|
||||
vvvvvyu(datalenght_vvvvvyu);
|
||||
var datalenght_vvvvvyw = jQuery("#jform_datalenght").val();
|
||||
vvvvvyw(datalenght_vvvvvyw);
|
||||
|
||||
});
|
||||
|
||||
// #jform_datadefault listeners for datadefault_vvvvvyv function
|
||||
// #jform_datadefault listeners for datadefault_vvvvvyx function
|
||||
jQuery('#jform_datadefault').on('keyup',function()
|
||||
{
|
||||
var datadefault_vvvvvyv = jQuery("#jform_datadefault").val();
|
||||
vvvvvyv(datadefault_vvvvvyv);
|
||||
var datadefault_vvvvvyx = jQuery("#jform_datadefault").val();
|
||||
vvvvvyx(datadefault_vvvvvyx);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_datadefault',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var datadefault_vvvvvyv = jQuery("#jform_datadefault").val();
|
||||
vvvvvyv(datadefault_vvvvvyv);
|
||||
var datadefault_vvvvvyx = jQuery("#jform_datadefault").val();
|
||||
vvvvvyx(datadefault_vvvvvyx);
|
||||
|
||||
});
|
||||
|
||||
// #jform_datatype listeners for datatype_vvvvvyw function
|
||||
// #jform_datatype listeners for datatype_vvvvvyy function
|
||||
jQuery('#jform_datatype').on('keyup',function()
|
||||
{
|
||||
var datatype_vvvvvyw = jQuery("#jform_datatype").val();
|
||||
vvvvvyw(datatype_vvvvvyw);
|
||||
var datatype_vvvvvyy = jQuery("#jform_datatype").val();
|
||||
vvvvvyy(datatype_vvvvvyy);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_datatype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var datatype_vvvvvyw = jQuery("#jform_datatype").val();
|
||||
vvvvvyw(datatype_vvvvvyw);
|
||||
var datatype_vvvvvyy = jQuery("#jform_datatype").val();
|
||||
vvvvvyy(datatype_vvvvvyy);
|
||||
|
||||
});
|
||||
|
||||
// #jform_store listeners for store_vvvvvyx function
|
||||
// #jform_store listeners for store_vvvvvyz function
|
||||
jQuery('#jform_store').on('keyup',function()
|
||||
{
|
||||
var store_vvvvvyx = jQuery("#jform_store").val();
|
||||
var datatype_vvvvvyx = jQuery("#jform_datatype").val();
|
||||
vvvvvyx(store_vvvvvyx,datatype_vvvvvyx);
|
||||
var store_vvvvvyz = jQuery("#jform_store").val();
|
||||
var datatype_vvvvvyz = jQuery("#jform_datatype").val();
|
||||
vvvvvyz(store_vvvvvyz,datatype_vvvvvyz);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_store',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var store_vvvvvyx = jQuery("#jform_store").val();
|
||||
var datatype_vvvvvyx = jQuery("#jform_datatype").val();
|
||||
vvvvvyx(store_vvvvvyx,datatype_vvvvvyx);
|
||||
var store_vvvvvyz = jQuery("#jform_store").val();
|
||||
var datatype_vvvvvyz = jQuery("#jform_datatype").val();
|
||||
vvvvvyz(store_vvvvvyz,datatype_vvvvvyz);
|
||||
|
||||
});
|
||||
|
||||
// #jform_datatype listeners for datatype_vvvvvyx function
|
||||
// #jform_datatype listeners for datatype_vvvvvyz function
|
||||
jQuery('#jform_datatype').on('keyup',function()
|
||||
{
|
||||
var store_vvvvvyx = jQuery("#jform_store").val();
|
||||
var datatype_vvvvvyx = jQuery("#jform_datatype").val();
|
||||
vvvvvyx(store_vvvvvyx,datatype_vvvvvyx);
|
||||
var store_vvvvvyz = jQuery("#jform_store").val();
|
||||
var datatype_vvvvvyz = jQuery("#jform_datatype").val();
|
||||
vvvvvyz(store_vvvvvyz,datatype_vvvvvyz);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_datatype',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var store_vvvvvyx = jQuery("#jform_store").val();
|
||||
var datatype_vvvvvyx = jQuery("#jform_datatype").val();
|
||||
vvvvvyx(store_vvvvvyx,datatype_vvvvvyx);
|
||||
var store_vvvvvyz = jQuery("#jform_store").val();
|
||||
var datatype_vvvvvyz = jQuery("#jform_datatype").val();
|
||||
vvvvvyz(store_vvvvvyz,datatype_vvvvvyz);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_css_view listeners for add_css_view_vvvvvyz function
|
||||
// #jform_add_css_view listeners for add_css_view_vvvvvzb function
|
||||
jQuery('#jform_add_css_view').on('keyup',function()
|
||||
{
|
||||
var add_css_view_vvvvvyz = jQuery("#jform_add_css_view input[type='radio']:checked").val();
|
||||
vvvvvyz(add_css_view_vvvvvyz);
|
||||
var add_css_view_vvvvvzb = jQuery("#jform_add_css_view input[type='radio']:checked").val();
|
||||
vvvvvzb(add_css_view_vvvvvzb);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_css_view',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_css_view_vvvvvyz = jQuery("#jform_add_css_view input[type='radio']:checked").val();
|
||||
vvvvvyz(add_css_view_vvvvvyz);
|
||||
var add_css_view_vvvvvzb = jQuery("#jform_add_css_view input[type='radio']:checked").val();
|
||||
vvvvvzb(add_css_view_vvvvvzb);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_css_views listeners for add_css_views_vvvvvza function
|
||||
// #jform_add_css_views listeners for add_css_views_vvvvvzc function
|
||||
jQuery('#jform_add_css_views').on('keyup',function()
|
||||
{
|
||||
var add_css_views_vvvvvza = jQuery("#jform_add_css_views input[type='radio']:checked").val();
|
||||
vvvvvza(add_css_views_vvvvvza);
|
||||
var add_css_views_vvvvvzc = jQuery("#jform_add_css_views input[type='radio']:checked").val();
|
||||
vvvvvzc(add_css_views_vvvvvzc);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_css_views',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_css_views_vvvvvza = jQuery("#jform_add_css_views input[type='radio']:checked").val();
|
||||
vvvvvza(add_css_views_vvvvvza);
|
||||
var add_css_views_vvvvvzc = jQuery("#jform_add_css_views input[type='radio']:checked").val();
|
||||
vvvvvzc(add_css_views_vvvvvzc);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_javascript_view_footer listeners for add_javascript_view_footer_vvvvvzb function
|
||||
// #jform_add_javascript_view_footer listeners for add_javascript_view_footer_vvvvvzd function
|
||||
jQuery('#jform_add_javascript_view_footer').on('keyup',function()
|
||||
{
|
||||
var add_javascript_view_footer_vvvvvzb = jQuery("#jform_add_javascript_view_footer input[type='radio']:checked").val();
|
||||
vvvvvzb(add_javascript_view_footer_vvvvvzb);
|
||||
var add_javascript_view_footer_vvvvvzd = jQuery("#jform_add_javascript_view_footer input[type='radio']:checked").val();
|
||||
vvvvvzd(add_javascript_view_footer_vvvvvzd);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_javascript_view_footer',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_javascript_view_footer_vvvvvzb = jQuery("#jform_add_javascript_view_footer input[type='radio']:checked").val();
|
||||
vvvvvzb(add_javascript_view_footer_vvvvvzb);
|
||||
var add_javascript_view_footer_vvvvvzd = jQuery("#jform_add_javascript_view_footer input[type='radio']:checked").val();
|
||||
vvvvvzd(add_javascript_view_footer_vvvvvzd);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_javascript_views_footer listeners for add_javascript_views_footer_vvvvvzc function
|
||||
// #jform_add_javascript_views_footer listeners for add_javascript_views_footer_vvvvvze function
|
||||
jQuery('#jform_add_javascript_views_footer').on('keyup',function()
|
||||
{
|
||||
var add_javascript_views_footer_vvvvvzc = jQuery("#jform_add_javascript_views_footer input[type='radio']:checked").val();
|
||||
vvvvvzc(add_javascript_views_footer_vvvvvzc);
|
||||
var add_javascript_views_footer_vvvvvze = jQuery("#jform_add_javascript_views_footer input[type='radio']:checked").val();
|
||||
vvvvvze(add_javascript_views_footer_vvvvvze);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_javascript_views_footer',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_javascript_views_footer_vvvvvzc = jQuery("#jform_add_javascript_views_footer input[type='radio']:checked").val();
|
||||
vvvvvzc(add_javascript_views_footer_vvvvvzc);
|
||||
var add_javascript_views_footer_vvvvvze = jQuery("#jform_add_javascript_views_footer input[type='radio']:checked").val();
|
||||
vvvvvze(add_javascript_views_footer_vvvvvze);
|
||||
|
||||
});
|
||||
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage view.html.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_batch_body.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_batch_footer.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_body.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_foot.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_head.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_toolbar.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage view.html.php
|
||||
|
@@ -9,8 +9,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage submitbutton.js
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage edit.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage view.html.php
|
||||
@@ -72,7 +72,7 @@ class ComponentbuilderViewFieldtype extends JViewLegacy
|
||||
}
|
||||
|
||||
// Get Linked view data
|
||||
$this->vyvfields = $this->get('Vyvfields');
|
||||
$this->vyyfields = $this->get('Vyyfields');
|
||||
|
||||
// Set the toolbar
|
||||
$this->addToolBar();
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_batch_body.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_batch_footer.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_body.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_foot.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_head.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_toolbar.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage view.html.php
|
||||
|
@@ -9,8 +9,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage submitbutton.js
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage edit.php
|
||||
@@ -103,63 +103,33 @@ $componentParams = JComponentHelper::getParams('com_componentbuilder');
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
// #jform_location listeners for location_vvvvvzd function
|
||||
// #jform_location listeners for location_vvvvvzf function
|
||||
jQuery('#jform_location').on('keyup',function()
|
||||
{
|
||||
var location_vvvvvzd = jQuery("#jform_location input[type='radio']:checked").val();
|
||||
vvvvvzd(location_vvvvvzd);
|
||||
var location_vvvvvzf = jQuery("#jform_location input[type='radio']:checked").val();
|
||||
vvvvvzf(location_vvvvvzf);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_location',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var location_vvvvvzd = jQuery("#jform_location input[type='radio']:checked").val();
|
||||
vvvvvzd(location_vvvvvzd);
|
||||
var location_vvvvvzf = jQuery("#jform_location input[type='radio']:checked").val();
|
||||
vvvvvzf(location_vvvvvzf);
|
||||
|
||||
});
|
||||
|
||||
// #jform_location listeners for location_vvvvvze function
|
||||
// #jform_location listeners for location_vvvvvzg function
|
||||
jQuery('#jform_location').on('keyup',function()
|
||||
{
|
||||
var location_vvvvvze = jQuery("#jform_location input[type='radio']:checked").val();
|
||||
vvvvvze(location_vvvvvze);
|
||||
var location_vvvvvzg = jQuery("#jform_location input[type='radio']:checked").val();
|
||||
vvvvvzg(location_vvvvvzg);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_location',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var location_vvvvvze = jQuery("#jform_location input[type='radio']:checked").val();
|
||||
vvvvvze(location_vvvvvze);
|
||||
|
||||
});
|
||||
|
||||
// #jform_type listeners for type_vvvvvzf function
|
||||
jQuery('#jform_type').on('keyup',function()
|
||||
{
|
||||
var type_vvvvvzf = jQuery("#jform_type").val();
|
||||
vvvvvzf(type_vvvvvzf);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_type',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var type_vvvvvzf = jQuery("#jform_type").val();
|
||||
vvvvvzf(type_vvvvvzf);
|
||||
|
||||
});
|
||||
|
||||
// #jform_type listeners for type_vvvvvzg function
|
||||
jQuery('#jform_type').on('keyup',function()
|
||||
{
|
||||
var type_vvvvvzg = jQuery("#jform_type").val();
|
||||
vvvvvzg(type_vvvvvzg);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_type',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var type_vvvvvzg = jQuery("#jform_type").val();
|
||||
vvvvvzg(type_vvvvvzg);
|
||||
var location_vvvvvzg = jQuery("#jform_location input[type='radio']:checked").val();
|
||||
vvvvvzg(location_vvvvvzg);
|
||||
|
||||
});
|
||||
|
||||
@@ -178,18 +148,48 @@ jQuery('#adminForm').on('change', '#jform_type',function (e)
|
||||
|
||||
});
|
||||
|
||||
// #jform_target listeners for target_vvvvvzi function
|
||||
// #jform_type listeners for type_vvvvvzi function
|
||||
jQuery('#jform_type').on('keyup',function()
|
||||
{
|
||||
var type_vvvvvzi = jQuery("#jform_type").val();
|
||||
vvvvvzi(type_vvvvvzi);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_type',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var type_vvvvvzi = jQuery("#jform_type").val();
|
||||
vvvvvzi(type_vvvvvzi);
|
||||
|
||||
});
|
||||
|
||||
// #jform_type listeners for type_vvvvvzj function
|
||||
jQuery('#jform_type').on('keyup',function()
|
||||
{
|
||||
var type_vvvvvzj = jQuery("#jform_type").val();
|
||||
vvvvvzj(type_vvvvvzj);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_type',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var type_vvvvvzj = jQuery("#jform_type").val();
|
||||
vvvvvzj(type_vvvvvzj);
|
||||
|
||||
});
|
||||
|
||||
// #jform_target listeners for target_vvvvvzk function
|
||||
jQuery('#jform_target').on('keyup',function()
|
||||
{
|
||||
var target_vvvvvzi = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvvzi(target_vvvvvzi);
|
||||
var target_vvvvvzk = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvvzk(target_vvvvvzk);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_target',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var target_vvvvvzi = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvvzi(target_vvvvvzi);
|
||||
var target_vvvvvzk = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvvzk(target_vvvvvzk);
|
||||
|
||||
});
|
||||
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage view.html.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_batch_body.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_batch_footer.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_body.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_foot.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_head.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_toolbar.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage view.html.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage view.html.php
|
||||
|
@@ -9,8 +9,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage submitbutton.js
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage edit.php
|
||||
@@ -114,18 +114,18 @@ $componentParams = JComponentHelper::getParams('com_componentbuilder');
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
// #jform_add_php_view listeners for add_php_view_vvvvvxx function
|
||||
// #jform_add_php_view listeners for add_php_view_vvvvvxz function
|
||||
jQuery('#jform_add_php_view').on('keyup',function()
|
||||
{
|
||||
var add_php_view_vvvvvxx = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvvxx(add_php_view_vvvvvxx);
|
||||
var add_php_view_vvvvvxz = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvvxz(add_php_view_vvvvvxz);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_view',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_view_vvvvvxx = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvvxx(add_php_view_vvvvvxx);
|
||||
var add_php_view_vvvvvxz = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvvxz(add_php_view_vvvvvxz);
|
||||
|
||||
});
|
||||
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage view.html.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_batch_body.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_batch_footer.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_body.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_foot.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_head.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default_toolbar.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage view.html.php
|
||||
|
@@ -9,8 +9,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage submitbutton.js
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage edit.php
|
||||
@@ -135,138 +135,138 @@ $componentParams = JComponentHelper::getParams('com_componentbuilder');
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
// #jform_add_php_view listeners for add_php_view_vvvvvxn function
|
||||
// #jform_add_php_view listeners for add_php_view_vvvvvxp function
|
||||
jQuery('#jform_add_php_view').on('keyup',function()
|
||||
{
|
||||
var add_php_view_vvvvvxn = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvvxn(add_php_view_vvvvvxn);
|
||||
var add_php_view_vvvvvxp = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvvxp(add_php_view_vvvvvxp);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_view',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_view_vvvvvxn = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvvxn(add_php_view_vvvvvxn);
|
||||
var add_php_view_vvvvvxp = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
||||
vvvvvxp(add_php_view_vvvvvxp);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_jview_display listeners for add_php_jview_display_vvvvvxo function
|
||||
// #jform_add_php_jview_display listeners for add_php_jview_display_vvvvvxq function
|
||||
jQuery('#jform_add_php_jview_display').on('keyup',function()
|
||||
{
|
||||
var add_php_jview_display_vvvvvxo = jQuery("#jform_add_php_jview_display input[type='radio']:checked").val();
|
||||
vvvvvxo(add_php_jview_display_vvvvvxo);
|
||||
var add_php_jview_display_vvvvvxq = jQuery("#jform_add_php_jview_display input[type='radio']:checked").val();
|
||||
vvvvvxq(add_php_jview_display_vvvvvxq);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_jview_display',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_jview_display_vvvvvxo = jQuery("#jform_add_php_jview_display input[type='radio']:checked").val();
|
||||
vvvvvxo(add_php_jview_display_vvvvvxo);
|
||||
var add_php_jview_display_vvvvvxq = jQuery("#jform_add_php_jview_display input[type='radio']:checked").val();
|
||||
vvvvvxq(add_php_jview_display_vvvvvxq);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_jview listeners for add_php_jview_vvvvvxp function
|
||||
// #jform_add_php_jview listeners for add_php_jview_vvvvvxr function
|
||||
jQuery('#jform_add_php_jview').on('keyup',function()
|
||||
{
|
||||
var add_php_jview_vvvvvxp = jQuery("#jform_add_php_jview input[type='radio']:checked").val();
|
||||
vvvvvxp(add_php_jview_vvvvvxp);
|
||||
var add_php_jview_vvvvvxr = jQuery("#jform_add_php_jview input[type='radio']:checked").val();
|
||||
vvvvvxr(add_php_jview_vvvvvxr);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_jview',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_jview_vvvvvxp = jQuery("#jform_add_php_jview input[type='radio']:checked").val();
|
||||
vvvvvxp(add_php_jview_vvvvvxp);
|
||||
var add_php_jview_vvvvvxr = jQuery("#jform_add_php_jview input[type='radio']:checked").val();
|
||||
vvvvvxr(add_php_jview_vvvvvxr);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_document listeners for add_php_document_vvvvvxq function
|
||||
// #jform_add_php_document listeners for add_php_document_vvvvvxs function
|
||||
jQuery('#jform_add_php_document').on('keyup',function()
|
||||
{
|
||||
var add_php_document_vvvvvxq = jQuery("#jform_add_php_document input[type='radio']:checked").val();
|
||||
vvvvvxq(add_php_document_vvvvvxq);
|
||||
var add_php_document_vvvvvxs = jQuery("#jform_add_php_document input[type='radio']:checked").val();
|
||||
vvvvvxs(add_php_document_vvvvvxs);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_document',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_document_vvvvvxq = jQuery("#jform_add_php_document input[type='radio']:checked").val();
|
||||
vvvvvxq(add_php_document_vvvvvxq);
|
||||
var add_php_document_vvvvvxs = jQuery("#jform_add_php_document input[type='radio']:checked").val();
|
||||
vvvvvxs(add_php_document_vvvvvxs);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_css_document listeners for add_css_document_vvvvvxr function
|
||||
// #jform_add_css_document listeners for add_css_document_vvvvvxt function
|
||||
jQuery('#jform_add_css_document').on('keyup',function()
|
||||
{
|
||||
var add_css_document_vvvvvxr = jQuery("#jform_add_css_document input[type='radio']:checked").val();
|
||||
vvvvvxr(add_css_document_vvvvvxr);
|
||||
var add_css_document_vvvvvxt = jQuery("#jform_add_css_document input[type='radio']:checked").val();
|
||||
vvvvvxt(add_css_document_vvvvvxt);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_css_document',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_css_document_vvvvvxr = jQuery("#jform_add_css_document input[type='radio']:checked").val();
|
||||
vvvvvxr(add_css_document_vvvvvxr);
|
||||
var add_css_document_vvvvvxt = jQuery("#jform_add_css_document input[type='radio']:checked").val();
|
||||
vvvvvxt(add_css_document_vvvvvxt);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_js_document listeners for add_js_document_vvvvvxs function
|
||||
// #jform_add_js_document listeners for add_js_document_vvvvvxu function
|
||||
jQuery('#jform_add_js_document').on('keyup',function()
|
||||
{
|
||||
var add_js_document_vvvvvxs = jQuery("#jform_add_js_document input[type='radio']:checked").val();
|
||||
vvvvvxs(add_js_document_vvvvvxs);
|
||||
var add_js_document_vvvvvxu = jQuery("#jform_add_js_document input[type='radio']:checked").val();
|
||||
vvvvvxu(add_js_document_vvvvvxu);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_js_document',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_js_document_vvvvvxs = jQuery("#jform_add_js_document input[type='radio']:checked").val();
|
||||
vvvvvxs(add_js_document_vvvvvxs);
|
||||
var add_js_document_vvvvvxu = jQuery("#jform_add_js_document input[type='radio']:checked").val();
|
||||
vvvvvxu(add_js_document_vvvvvxu);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_css listeners for add_css_vvvvvxt function
|
||||
// #jform_add_css listeners for add_css_vvvvvxv function
|
||||
jQuery('#jform_add_css').on('keyup',function()
|
||||
{
|
||||
var add_css_vvvvvxt = jQuery("#jform_add_css input[type='radio']:checked").val();
|
||||
vvvvvxt(add_css_vvvvvxt);
|
||||
var add_css_vvvvvxv = jQuery("#jform_add_css input[type='radio']:checked").val();
|
||||
vvvvvxv(add_css_vvvvvxv);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_css',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_css_vvvvvxt = jQuery("#jform_add_css input[type='radio']:checked").val();
|
||||
vvvvvxt(add_css_vvvvvxt);
|
||||
var add_css_vvvvvxv = jQuery("#jform_add_css input[type='radio']:checked").val();
|
||||
vvvvvxv(add_css_vvvvvxv);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_php_ajax listeners for add_php_ajax_vvvvvxu function
|
||||
// #jform_add_php_ajax listeners for add_php_ajax_vvvvvxw function
|
||||
jQuery('#jform_add_php_ajax').on('keyup',function()
|
||||
{
|
||||
var add_php_ajax_vvvvvxu = jQuery("#jform_add_php_ajax input[type='radio']:checked").val();
|
||||
vvvvvxu(add_php_ajax_vvvvvxu);
|
||||
var add_php_ajax_vvvvvxw = jQuery("#jform_add_php_ajax input[type='radio']:checked").val();
|
||||
vvvvvxw(add_php_ajax_vvvvvxw);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_php_ajax',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_php_ajax_vvvvvxu = jQuery("#jform_add_php_ajax input[type='radio']:checked").val();
|
||||
vvvvvxu(add_php_ajax_vvvvvxu);
|
||||
var add_php_ajax_vvvvvxw = jQuery("#jform_add_php_ajax input[type='radio']:checked").val();
|
||||
vvvvvxw(add_php_ajax_vvvvvxw);
|
||||
|
||||
});
|
||||
|
||||
// #jform_add_custom_button listeners for add_custom_button_vvvvvxv function
|
||||
// #jform_add_custom_button listeners for add_custom_button_vvvvvxx function
|
||||
jQuery('#jform_add_custom_button').on('keyup',function()
|
||||
{
|
||||
var add_custom_button_vvvvvxv = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
|
||||
vvvvvxv(add_custom_button_vvvvvxv);
|
||||
var add_custom_button_vvvvvxx = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
|
||||
vvvvvxx(add_custom_button_vvvvvxx);
|
||||
|
||||
});
|
||||
jQuery('#adminForm').on('change', '#jform_add_custom_button',function (e)
|
||||
{
|
||||
e.preventDefault();
|
||||
var add_custom_button_vvvvvxv = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
|
||||
vvvvvxv(add_custom_button_vvvvvxv);
|
||||
var add_custom_button_vvvvvxx = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
|
||||
vvvvvxx(add_custom_button_vvvvvxx);
|
||||
|
||||
});
|
||||
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage view.html.php
|
||||
|
@@ -10,8 +10,8 @@
|
||||
|_|
|
||||
/-------------------------------------------------------------------------------------------------------------------------------/
|
||||
|
||||
@version 2.1.4
|
||||
@build 2nd May, 2016
|
||||
@version 2.1.5
|
||||
@build 4th May, 2016
|
||||
@created 30th April, 2015
|
||||
@package Component Builder
|
||||
@subpackage default.php
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user