2018-05-18 06:28:27 +00:00
|
|
|
/**
|
|
|
|
* @package Joomla.Component.Builder
|
|
|
|
*
|
|
|
|
* @created 30th April, 2015
|
|
|
|
* @author Llewellyn van der Merwe <http://www.joomlacomponentbuilder.com>
|
|
|
|
* @github Joomla Component Builder <https://github.com/vdm-io/Joomla-Component-Builder>
|
2019-02-23 13:28:54 +00:00
|
|
|
* @copyright Copyright (C) 2015 - 2019 Vast Development Method. All rights reserved.
|
2018-05-18 06:28:27 +00:00
|
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
|
|
*/
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
// Initial Script
|
|
|
|
jQuery(document).ready(function()
|
|
|
|
{
|
2019-07-28 21:48:42 +00:00
|
|
|
var add_php_view_vvvvvzg = jQuery("#jform_add_php_view input[type='radio']:checked").val();
|
|
|
|
vvvvvzg(add_php_view_vvvvvzg);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
var add_php_jview_display_vvvvvzh = jQuery("#jform_add_php_jview_display input[type='radio']:checked").val();
|
|
|
|
vvvvvzh(add_php_jview_display_vvvvvzh);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
var add_php_jview_vvvvvzi = jQuery("#jform_add_php_jview input[type='radio']:checked").val();
|
|
|
|
vvvvvzi(add_php_jview_vvvvvzi);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
var add_php_document_vvvvvzj = jQuery("#jform_add_php_document input[type='radio']:checked").val();
|
|
|
|
vvvvvzj(add_php_document_vvvvvzj);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
var add_css_document_vvvvvzk = jQuery("#jform_add_css_document input[type='radio']:checked").val();
|
|
|
|
vvvvvzk(add_css_document_vvvvvzk);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
var add_javascript_file_vvvvvzl = jQuery("#jform_add_javascript_file input[type='radio']:checked").val();
|
|
|
|
vvvvvzl(add_javascript_file_vvvvvzl);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
var add_js_document_vvvvvzm = jQuery("#jform_add_js_document input[type='radio']:checked").val();
|
|
|
|
vvvvvzm(add_js_document_vvvvvzm);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
var add_custom_button_vvvvvzn = jQuery("#jform_add_custom_button input[type='radio']:checked").val();
|
|
|
|
vvvvvzn(add_custom_button_vvvvvzn);
|
2017-12-14 23:10:47 +00:00
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
var add_css_vvvvvzo = jQuery("#jform_add_css input[type='radio']:checked").val();
|
|
|
|
vvvvvzo(add_css_vvvvvzo);
|
2018-01-15 15:54:05 +00:00
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
var add_php_ajax_vvvvvzp = jQuery("#jform_add_php_ajax input[type='radio']:checked").val();
|
|
|
|
vvvvvzp(add_php_ajax_vvvvvzp);
|
2016-01-30 20:28:43 +00:00
|
|
|
});
|
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
// the vvvvvzg function
|
|
|
|
function vvvvvzg(add_php_view_vvvvvzg)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-07-28 21:48:42 +00:00
|
|
|
if (add_php_view_vvvvvzg == 1)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
2018-06-25 20:54:26 +00:00
|
|
|
jQuery('#jform_php_view-lbl').closest('.control-group').show();
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-06-25 20:54:26 +00:00
|
|
|
jQuery('#jform_php_view-lbl').closest('.control-group').hide();
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
// the vvvvvzh function
|
|
|
|
function vvvvvzh(add_php_jview_display_vvvvvzh)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-07-28 21:48:42 +00:00
|
|
|
if (add_php_jview_display_vvvvvzh == 1)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
2018-06-25 20:54:26 +00:00
|
|
|
jQuery('#jform_php_jview_display-lbl').closest('.control-group').show();
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-06-25 20:54:26 +00:00
|
|
|
jQuery('#jform_php_jview_display-lbl').closest('.control-group').hide();
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
// the vvvvvzi function
|
|
|
|
function vvvvvzi(add_php_jview_vvvvvzi)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-07-28 21:48:42 +00:00
|
|
|
if (add_php_jview_vvvvvzi == 1)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
2018-06-25 20:54:26 +00:00
|
|
|
jQuery('#jform_php_jview-lbl').closest('.control-group').show();
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-06-25 20:54:26 +00:00
|
|
|
jQuery('#jform_php_jview-lbl').closest('.control-group').hide();
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
// the vvvvvzj function
|
|
|
|
function vvvvvzj(add_php_document_vvvvvzj)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-07-28 21:48:42 +00:00
|
|
|
if (add_php_document_vvvvvzj == 1)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
2018-06-25 02:25:10 +00:00
|
|
|
jQuery('#jform_php_document-lbl').closest('.control-group').show();
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-06-25 02:25:10 +00:00
|
|
|
jQuery('#jform_php_document-lbl').closest('.control-group').hide();
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
// the vvvvvzk function
|
|
|
|
function vvvvvzk(add_css_document_vvvvvzk)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-07-28 21:48:42 +00:00
|
|
|
if (add_css_document_vvvvvzk == 1)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
2018-06-25 20:54:26 +00:00
|
|
|
jQuery('#jform_css_document-lbl').closest('.control-group').show();
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-06-25 20:54:26 +00:00
|
|
|
jQuery('#jform_css_document-lbl').closest('.control-group').hide();
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
// the vvvvvzl function
|
|
|
|
function vvvvvzl(add_javascript_file_vvvvvzl)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-07-28 21:48:42 +00:00
|
|
|
if (add_javascript_file_vvvvvzl == 1)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
2018-06-25 20:54:26 +00:00
|
|
|
jQuery('#jform_javascript_file-lbl').closest('.control-group').show();
|
2017-12-14 23:10:47 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-06-25 20:54:26 +00:00
|
|
|
jQuery('#jform_javascript_file-lbl').closest('.control-group').hide();
|
2017-12-14 23:10:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
// the vvvvvzm function
|
|
|
|
function vvvvvzm(add_js_document_vvvvvzm)
|
2017-12-14 23:10:47 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-07-28 21:48:42 +00:00
|
|
|
if (add_js_document_vvvvvzm == 1)
|
2017-12-14 23:10:47 +00:00
|
|
|
{
|
2018-06-25 20:54:26 +00:00
|
|
|
jQuery('#jform_js_document-lbl').closest('.control-group').show();
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-06-25 20:54:26 +00:00
|
|
|
jQuery('#jform_js_document-lbl').closest('.control-group').hide();
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
// the vvvvvzn function
|
|
|
|
function vvvvvzn(add_custom_button_vvvvvzn)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-07-28 21:48:42 +00:00
|
|
|
if (add_custom_button_vvvvvzn == 1)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
2017-10-12 00:50:14 +00:00
|
|
|
jQuery('#jform_custom_button-lbl').closest('.control-group').show();
|
2018-06-25 02:25:10 +00:00
|
|
|
jQuery('#jform_php_controller-lbl').closest('.control-group').show();
|
|
|
|
jQuery('#jform_php_model-lbl').closest('.control-group').show();
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-10-12 00:50:14 +00:00
|
|
|
jQuery('#jform_custom_button-lbl').closest('.control-group').hide();
|
2018-06-25 02:25:10 +00:00
|
|
|
jQuery('#jform_php_controller-lbl').closest('.control-group').hide();
|
|
|
|
jQuery('#jform_php_model-lbl').closest('.control-group').hide();
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
// the vvvvvzo function
|
|
|
|
function vvvvvzo(add_css_vvvvvzo)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-07-28 21:48:42 +00:00
|
|
|
if (add_css_vvvvvzo == 1)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
2018-06-25 20:54:26 +00:00
|
|
|
jQuery('#jform_css-lbl').closest('.control-group').show();
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-06-25 20:54:26 +00:00
|
|
|
jQuery('#jform_css-lbl').closest('.control-group').hide();
|
2018-01-15 15:54:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-28 21:48:42 +00:00
|
|
|
// the vvvvvzp function
|
|
|
|
function vvvvvzp(add_php_ajax_vvvvvzp)
|
2018-01-15 15:54:05 +00:00
|
|
|
{
|
|
|
|
// set the function logic
|
2019-07-28 21:48:42 +00:00
|
|
|
if (add_php_ajax_vvvvvzp == 1)
|
2018-01-15 15:54:05 +00:00
|
|
|
{
|
|
|
|
jQuery('#jform_ajax_input-lbl').closest('.control-group').show();
|
2018-06-25 02:25:10 +00:00
|
|
|
jQuery('#jform_php_ajaxmethod-lbl').closest('.control-group').show();
|
2018-01-15 15:54:05 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jQuery('#jform_ajax_input-lbl').closest('.control-group').hide();
|
2018-06-25 02:25:10 +00:00
|
|
|
jQuery('#jform_php_ajaxmethod-lbl').closest('.control-group').hide();
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// the isSet function
|
|
|
|
function isSet(val)
|
|
|
|
{
|
|
|
|
if ((val != undefined) && (val != null) && 0 !== val.length){
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-03-11 02:44:43 +00:00
|
|
|
|
2018-01-15 15:54:05 +00:00
|
|
|
jQuery(document).ready(function()
|
|
|
|
{
|
|
|
|
// get the linked details
|
|
|
|
getLinked();
|
2019-01-31 21:44:21 +00:00
|
|
|
// check and load all the custom code edit buttons
|
|
|
|
getEditCustomCodeButtons();
|
2018-01-15 15:54:05 +00:00
|
|
|
});
|
2018-02-27 12:17:38 +00:00
|
|
|
|
2018-01-15 15:54:05 +00:00
|
|
|
function getLinked_server(type){
|
2019-07-08 16:05:54 +00:00
|
|
|
var getUrl = JRouter("index.php?option=com_componentbuilder&task=ajax.getLinked&format=json&raw=true&vdm="+vastDevMod);
|
2018-01-15 15:54:05 +00:00
|
|
|
if(token.length > 0 && type > 0){
|
2019-07-08 16:05:54 +00:00
|
|
|
var request = token+'=1&type='+type;
|
2018-01-15 15:54:05 +00:00
|
|
|
}
|
|
|
|
return jQuery.ajax({
|
|
|
|
type: 'GET',
|
|
|
|
url: getUrl,
|
2018-12-29 14:56:06 +00:00
|
|
|
dataType: 'json',
|
2018-01-15 15:54:05 +00:00
|
|
|
data: request,
|
2018-12-29 14:56:06 +00:00
|
|
|
jsonp: false
|
2018-01-15 15:54:05 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function getLinked(){
|
|
|
|
getLinked_server(1).done(function(result) {
|
|
|
|
if(result){
|
|
|
|
jQuery('#display_linked_to').html(result);
|
|
|
|
}
|
|
|
|
});
|
2018-02-27 12:17:38 +00:00
|
|
|
}
|
|
|
|
|
2016-01-30 20:28:43 +00:00
|
|
|
function getSnippetDetails_server(snippetId){
|
2019-07-08 16:05:54 +00:00
|
|
|
var getUrl = JRouter("index.php?option=com_componentbuilder&task=ajax.snippetDetails&format=json");
|
2016-01-30 20:28:43 +00:00
|
|
|
if(token.length > 0 && snippetId > 0){
|
2019-07-08 16:05:54 +00:00
|
|
|
var request = token+'=1&id='+snippetId;
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
return jQuery.ajax({
|
|
|
|
type: 'GET',
|
|
|
|
url: getUrl,
|
|
|
|
dataType: 'jsonp',
|
|
|
|
data: request,
|
|
|
|
jsonp: 'callback'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function getSnippetDetails(id){
|
|
|
|
getSnippetDetails_server(id).done(function(result) {
|
|
|
|
if(result.snippet){
|
|
|
|
var description = '';
|
2017-11-16 04:37:32 +00:00
|
|
|
if (result.description.length > 0) {
|
2016-01-30 20:28:43 +00:00
|
|
|
description = '<p>'+result.description+'</p>';
|
|
|
|
}
|
2017-11-16 04:37:32 +00:00
|
|
|
var library = '';
|
|
|
|
if (result.library.length > 0) {
|
|
|
|
library = ' <b>('+result.library+')</b>';
|
|
|
|
}
|
|
|
|
var code = '<div id="snippet-code"><b>'+result.name+' ('+result.type+')</b> <a href="'+result.url+'" target="_blank" >see more details'+library+'</a><br /><em>'+result.heading+'</em><br /><textarea id="snippet" class="span12" rows="11">'+result.snippet+'</textarea></div>';
|
2016-01-30 20:28:43 +00:00
|
|
|
jQuery('#snippet-code').remove();
|
|
|
|
jQuery('.snippet-code').append(code);
|
|
|
|
// make sure the code block is active
|
|
|
|
jQuery("#snippet").focus(function() {
|
|
|
|
var jQuerythis = jQuery(this);
|
|
|
|
jQuerythis.select();
|
|
|
|
|
|
|
|
// Work around Chrome's little problem
|
|
|
|
jQuerythis.mouseup(function() {
|
|
|
|
// Prevent further mouseup intervention
|
|
|
|
jQuerythis.unbind("mouseup");
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
if(result.usage){
|
|
|
|
var usage = '<div id="snippet-usage"><p>'+result.usage+'</p></div>';
|
|
|
|
jQuery('#snippet-usage').remove();
|
|
|
|
jQuery('.snippet-usage').append(usage);
|
|
|
|
}
|
|
|
|
})
|
2018-02-27 12:17:38 +00:00
|
|
|
}
|
|
|
|
|
2016-01-30 20:28:43 +00:00
|
|
|
function getDynamicValues_server(dynamicId){
|
2019-07-08 16:05:54 +00:00
|
|
|
var getUrl = JRouter("index.php?option=com_componentbuilder&task=ajax.getDynamicValues&format=json");
|
2016-01-30 20:28:43 +00:00
|
|
|
if(token.length > 0 && dynamicId > 0){
|
2019-07-08 16:05:54 +00:00
|
|
|
var request = token+'=1&view=custom_admin_view&id='+dynamicId;
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
return jQuery.ajax({
|
|
|
|
type: 'GET',
|
|
|
|
url: getUrl,
|
|
|
|
dataType: 'jsonp',
|
|
|
|
data: request,
|
|
|
|
jsonp: 'callback'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function getDynamicValues(id){
|
|
|
|
getDynamicValues_server(id).done(function(result) {
|
|
|
|
if(result){
|
|
|
|
jQuery('#dynamic_values').remove();
|
|
|
|
jQuery('.dynamic_values').append('<div id="dynamic_values">'+result+'</div>');
|
|
|
|
// make sure the code bocks are active
|
|
|
|
jQuery("code").click(function() {
|
|
|
|
jQuery(this).selText().addClass("selected");
|
|
|
|
});
|
|
|
|
}
|
|
|
|
})
|
2018-02-27 12:17:38 +00:00
|
|
|
}
|
|
|
|
|
2016-01-30 20:28:43 +00:00
|
|
|
function getLayoutDetails_server(id){
|
2019-07-08 16:05:54 +00:00
|
|
|
var getUrl = JRouter("index.php?option=com_componentbuilder&task=ajax.getLayoutDetails&format=json&vdm="+vastDevMod);
|
2016-01-30 20:28:43 +00:00
|
|
|
if(token.length > 0 && id > 0){
|
2019-07-08 16:05:54 +00:00
|
|
|
var request = token+'=1&id='+id;
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
return jQuery.ajax({
|
|
|
|
type: 'GET',
|
|
|
|
url: getUrl,
|
|
|
|
dataType: 'jsonp',
|
|
|
|
data: request,
|
|
|
|
jsonp: 'callback'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function getLayoutDetails(id){
|
|
|
|
getLayoutDetails_server(id).done(function(result) {
|
|
|
|
if(result){
|
|
|
|
jQuery('#details').append(result);
|
|
|
|
// make sure the code bocks are active
|
|
|
|
jQuery("code").click(function() {
|
|
|
|
jQuery(this).selText().addClass("selected");
|
|
|
|
});
|
|
|
|
}
|
|
|
|
})
|
2018-02-27 12:17:38 +00:00
|
|
|
}
|
|
|
|
|
2016-01-30 20:28:43 +00:00
|
|
|
function getTemplateDetails_server(id){
|
2019-07-08 16:05:54 +00:00
|
|
|
var getUrl = JRouter("index.php?option=com_componentbuilder&task=ajax.templateDetails&format=json&vdm="+vastDevMod);
|
2016-01-30 20:28:43 +00:00
|
|
|
if(token.length > 0 && id > 0){
|
2019-07-08 16:05:54 +00:00
|
|
|
var request = token+'=1&id='+id;
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
return jQuery.ajax({
|
|
|
|
type: 'GET',
|
|
|
|
url: getUrl,
|
|
|
|
dataType: 'jsonp',
|
|
|
|
data: request,
|
|
|
|
jsonp: 'callback'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function getTemplateDetails(id){
|
|
|
|
getTemplateDetails_server(id).done(function(result) {
|
|
|
|
if(result){
|
|
|
|
jQuery('#details').append(result);
|
|
|
|
// make sure the code bocks are active
|
|
|
|
jQuery("code").click(function() {
|
|
|
|
jQuery(this).selText().addClass("selected");
|
|
|
|
});
|
|
|
|
}
|
|
|
|
})
|
2018-02-27 12:17:38 +00:00
|
|
|
}
|
|
|
|
|
2017-11-26 00:29:08 +00:00
|
|
|
// set snippets that are on the page
|
|
|
|
var snippetIds = [];
|
|
|
|
var snippets = {};
|
|
|
|
var snippet = 0;
|
|
|
|
jQuery(document).ready(function($)
|
|
|
|
{
|
|
|
|
jQuery("#jform_snippet option").each(function()
|
|
|
|
{
|
|
|
|
var key = jQuery(this).val();
|
|
|
|
var text = jQuery(this).text();
|
|
|
|
snippets[key] = text;
|
|
|
|
snippetIds.push(key);
|
|
|
|
});
|
|
|
|
snippet = jQuery("#jform_snippet").val();
|
|
|
|
getSnippets();
|
|
|
|
});
|
|
|
|
|
|
|
|
function getSnippets_server(libraries){
|
2018-12-29 14:56:06 +00:00
|
|
|
var getUrl = "index.php?option=com_componentbuilder&task=ajax.getSnippets&raw=true&format=json";
|
2017-11-26 00:29:08 +00:00
|
|
|
if(token.length > 0 && libraries.length > 0){
|
2019-07-08 16:05:54 +00:00
|
|
|
var request = token+'=1&libraries='+JSON.stringify(libraries);
|
2017-11-26 00:29:08 +00:00
|
|
|
}
|
|
|
|
return jQuery.ajax({
|
|
|
|
type: 'GET',
|
|
|
|
url: getUrl,
|
2018-12-29 14:56:06 +00:00
|
|
|
dataType: 'json',
|
2017-11-26 00:29:08 +00:00
|
|
|
data: request,
|
2018-12-29 14:56:06 +00:00
|
|
|
jsonp: false
|
2017-11-26 00:29:08 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
function getSnippets(){
|
|
|
|
jQuery("#loading").show();
|
|
|
|
// clear the selection
|
|
|
|
jQuery('#jform_snippet').find('option').remove().end();
|
|
|
|
jQuery('#jform_snippet').trigger('liszt:updated');
|
|
|
|
// get country value if set
|
|
|
|
var libraries = jQuery("#jform_libraries").val();
|
|
|
|
if (libraries) {
|
|
|
|
getSnippets_server(libraries).done(function(result) {
|
|
|
|
setSnippets(result);
|
|
|
|
jQuery("#loading").hide();
|
|
|
|
if (typeof snippetButton !== 'undefined') {
|
|
|
|
// ensure button is correct
|
|
|
|
var snippet = jQuery('#jform_snippet').val();
|
|
|
|
snippetButton(snippet);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// load all snippets in none is selected
|
|
|
|
setSnippets(snippetIds);
|
|
|
|
jQuery("#loading").hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
function setSnippets(array){
|
|
|
|
if (array) {
|
|
|
|
jQuery('#jform_snippet').append('<option value="">'+select_a_snippet+'</option>');
|
|
|
|
jQuery.each( array, function( i, id ) {
|
|
|
|
if (id in snippets) {
|
|
|
|
jQuery('#jform_snippet').append('<option value="'+id+'">'+snippets[id]+'</option>');
|
|
|
|
}
|
|
|
|
if (id == snippet) {
|
|
|
|
jQuery('#jform_snippet').val(id);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
jQuery('#jform_snippet').append('<option value="">'+create_a_snippet+'</option>');
|
|
|
|
}
|
|
|
|
jQuery('#jform_snippet').trigger('liszt:updated');
|
2019-01-31 21:44:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function getEditCustomCodeButtons_server(id){
|
2019-07-08 16:05:54 +00:00
|
|
|
var getUrl = JRouter("index.php?option=com_componentbuilder&task=ajax.getEditCustomCodeButtons&format=json&raw=true&vdm="+vastDevMod);
|
2019-01-31 21:44:21 +00:00
|
|
|
if(token.length > 0 && id > 0){
|
2019-07-08 16:05:54 +00:00
|
|
|
var request = token+'=1&id='+id+'&return_here='+return_here;
|
2019-01-31 21:44:21 +00:00
|
|
|
}
|
|
|
|
return jQuery.ajax({
|
|
|
|
type: 'GET',
|
|
|
|
url: getUrl,
|
|
|
|
dataType: 'json',
|
|
|
|
data: request,
|
|
|
|
jsonp: false
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function getEditCustomCodeButtons(){
|
|
|
|
// get the id
|
|
|
|
id = jQuery("#jform_id").val();
|
|
|
|
getEditCustomCodeButtons_server(id).done(function(result) {
|
|
|
|
if(isObject(result)){
|
|
|
|
jQuery.each(result, function( field, buttons ) {
|
2019-05-15 22:50:45 +00:00
|
|
|
jQuery('<div class="control-group"><div class="control-label"><label>Add/Edit Customcode</label></div><div class="controls control-customcode-buttons-'+field+'"></div></div>').insertBefore(".control-wrapper-"+ field);
|
2019-01-31 21:44:21 +00:00
|
|
|
jQuery.each(buttons, function( name, button ) {
|
|
|
|
jQuery(".control-customcode-buttons-"+field).append(button);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// check object is not empty
|
|
|
|
function isObject(obj) {
|
|
|
|
for(var prop in obj) {
|
|
|
|
if (Object.prototype.hasOwnProperty.call(obj, prop)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2018-02-27 12:17:38 +00:00
|
|
|
}
|