Added the option of placing tabs on the dashboard with custom scription options. All other changes are only random variable name and date changes (due to automation)

This commit is contained in:
2016-02-19 11:21:44 +02:00
parent 737785ea33
commit 4e65696d40
367 changed files with 3233 additions and 3013 deletions

View File

@ -9,8 +9,8 @@
|_|
/-------------------------------------------------------------------------------------------------------------------------------/
@version 2.0.9
@build 15th February, 2016
@version 2.1.0
@build 18th February, 2016
@created 30th April, 2015
@package Component Builder
@subpackage help_document.js
@ -24,38 +24,38 @@
/-----------------------------------------------------------------------------------------------------------------------------*/
// Some Global Values
jform_ziCMfZGmmZ_required = false;
jform_EnWPFlGsyX_required = false;
jform_FRmRFoEGoi_required = false;
jform_SJsvpxCUFN_required = false;
jform_wQQEDCwGYL_required = false;
jform_ttDwXdLEBi_required = false;
jform_EAELSyjEIZ_required = false;
jform_pgRfKoFgbD_required = false;
// Initial Script
jQuery(document).ready(function()
{
var location_KgqqAok = jQuery("#jform_location input[type='radio']:checked").val();
KgqqAok(location_KgqqAok);
var location_HqDfZpa = jQuery("#jform_location input[type='radio']:checked").val();
HqDfZpa(location_HqDfZpa);
var location_IcLfUBn = jQuery("#jform_location input[type='radio']:checked").val();
IcLfUBn(location_IcLfUBn);
var location_zSERnNI = jQuery("#jform_location input[type='radio']:checked").val();
zSERnNI(location_zSERnNI);
var type_ziCMfZG = jQuery("#jform_type").val();
ziCMfZG(type_ziCMfZG);
var type_wQQEDCw = jQuery("#jform_type").val();
wQQEDCw(type_wQQEDCw);
var type_EnWPFlG = jQuery("#jform_type").val();
EnWPFlG(type_EnWPFlG);
var type_ttDwXdL = jQuery("#jform_type").val();
ttDwXdL(type_ttDwXdL);
var type_FRmRFoE = jQuery("#jform_type").val();
FRmRFoE(type_FRmRFoE);
var type_EAELSyj = jQuery("#jform_type").val();
EAELSyj(type_EAELSyj);
var target_SJsvpxC = jQuery("#jform_target input[type='radio']:checked").val();
SJsvpxC(target_SJsvpxC);
var target_pgRfKoF = jQuery("#jform_target input[type='radio']:checked").val();
pgRfKoF(target_pgRfKoF);
});
// the KgqqAok function
function KgqqAok(location_KgqqAok)
// the HqDfZpa function
function HqDfZpa(location_HqDfZpa)
{
// set the function logic
if (location_KgqqAok == 1)
if (location_HqDfZpa == 1)
{
jQuery('#jform_admin_view').closest('.control-group').show();
}
@ -65,11 +65,11 @@ function KgqqAok(location_KgqqAok)
}
}
// the IcLfUBn function
function IcLfUBn(location_IcLfUBn)
// the zSERnNI function
function zSERnNI(location_zSERnNI)
{
// set the function logic
if (location_IcLfUBn == 2)
if (location_zSERnNI == 2)
{
jQuery('#jform_site_view').closest('.control-group').show();
}
@ -79,198 +79,198 @@ function IcLfUBn(location_IcLfUBn)
}
}
// the ziCMfZG function
function ziCMfZG(type_ziCMfZG)
// the wQQEDCw function
function wQQEDCw(type_wQQEDCw)
{
if (isSet(type_ziCMfZG) && type_ziCMfZG.constructor !== Array)
if (isSet(type_wQQEDCw) && type_wQQEDCw.constructor !== Array)
{
var temp_ziCMfZG = type_ziCMfZG;
var type_ziCMfZG = [];
type_ziCMfZG.push(temp_ziCMfZG);
var temp_wQQEDCw = type_wQQEDCw;
var type_wQQEDCw = [];
type_wQQEDCw.push(temp_wQQEDCw);
}
else if (!isSet(type_ziCMfZG))
else if (!isSet(type_wQQEDCw))
{
var type_ziCMfZG = [];
var type_wQQEDCw = [];
}
var type = type_ziCMfZG.some(type_ziCMfZG_SomeFunc);
var type = type_wQQEDCw.some(type_wQQEDCw_SomeFunc);
// set this function logic
if (type)
{
jQuery('#jform_url').closest('.control-group').show();
if (jform_ziCMfZGmmZ_required)
if (jform_wQQEDCwGYL_required)
{
updateFieldRequired('url',0);
jQuery('#jform_url').prop('required','required');
jQuery('#jform_url').attr('aria-required',true);
jQuery('#jform_url').addClass('required');
jform_ziCMfZGmmZ_required = false;
jform_wQQEDCwGYL_required = false;
}
}
else
{
jQuery('#jform_url').closest('.control-group').hide();
if (!jform_ziCMfZGmmZ_required)
if (!jform_wQQEDCwGYL_required)
{
updateFieldRequired('url',1);
jQuery('#jform_url').removeAttr('required');
jQuery('#jform_url').removeAttr('aria-required');
jQuery('#jform_url').removeClass('required');
jform_ziCMfZGmmZ_required = true;
jform_wQQEDCwGYL_required = true;
}
}
}
// the ziCMfZG Some function
function type_ziCMfZG_SomeFunc(type_ziCMfZG)
// the wQQEDCw Some function
function type_wQQEDCw_SomeFunc(type_wQQEDCw)
{
// set the function logic
if (type_ziCMfZG == 3)
if (type_wQQEDCw == 3)
{
return true;
}
return false;
}
// the EnWPFlG function
function EnWPFlG(type_EnWPFlG)
// the ttDwXdL function
function ttDwXdL(type_ttDwXdL)
{
if (isSet(type_EnWPFlG) && type_EnWPFlG.constructor !== Array)
if (isSet(type_ttDwXdL) && type_ttDwXdL.constructor !== Array)
{
var temp_EnWPFlG = type_EnWPFlG;
var type_EnWPFlG = [];
type_EnWPFlG.push(temp_EnWPFlG);
var temp_ttDwXdL = type_ttDwXdL;
var type_ttDwXdL = [];
type_ttDwXdL.push(temp_ttDwXdL);
}
else if (!isSet(type_EnWPFlG))
else if (!isSet(type_ttDwXdL))
{
var type_EnWPFlG = [];
var type_ttDwXdL = [];
}
var type = type_EnWPFlG.some(type_EnWPFlG_SomeFunc);
var type = type_ttDwXdL.some(type_ttDwXdL_SomeFunc);
// set this function logic
if (type)
{
jQuery('#jform_article').closest('.control-group').show();
if (jform_EnWPFlGsyX_required)
if (jform_ttDwXdLEBi_required)
{
updateFieldRequired('article',0);
jQuery('#jform_article').prop('required','required');
jQuery('#jform_article').attr('aria-required',true);
jQuery('#jform_article').addClass('required');
jform_EnWPFlGsyX_required = false;
jform_ttDwXdLEBi_required = false;
}
}
else
{
jQuery('#jform_article').closest('.control-group').hide();
if (!jform_EnWPFlGsyX_required)
if (!jform_ttDwXdLEBi_required)
{
updateFieldRequired('article',1);
jQuery('#jform_article').removeAttr('required');
jQuery('#jform_article').removeAttr('aria-required');
jQuery('#jform_article').removeClass('required');
jform_EnWPFlGsyX_required = true;
jform_ttDwXdLEBi_required = true;
}
}
}
// the EnWPFlG Some function
function type_EnWPFlG_SomeFunc(type_EnWPFlG)
// the ttDwXdL Some function
function type_ttDwXdL_SomeFunc(type_ttDwXdL)
{
// set the function logic
if (type_EnWPFlG == 1)
if (type_ttDwXdL == 1)
{
return true;
}
return false;
}
// the FRmRFoE function
function FRmRFoE(type_FRmRFoE)
// the EAELSyj function
function EAELSyj(type_EAELSyj)
{
if (isSet(type_FRmRFoE) && type_FRmRFoE.constructor !== Array)
if (isSet(type_EAELSyj) && type_EAELSyj.constructor !== Array)
{
var temp_FRmRFoE = type_FRmRFoE;
var type_FRmRFoE = [];
type_FRmRFoE.push(temp_FRmRFoE);
var temp_EAELSyj = type_EAELSyj;
var type_EAELSyj = [];
type_EAELSyj.push(temp_EAELSyj);
}
else if (!isSet(type_FRmRFoE))
else if (!isSet(type_EAELSyj))
{
var type_FRmRFoE = [];
var type_EAELSyj = [];
}
var type = type_FRmRFoE.some(type_FRmRFoE_SomeFunc);
var type = type_EAELSyj.some(type_EAELSyj_SomeFunc);
// set this function logic
if (type)
{
jQuery('#jform_content-lbl').closest('.control-group').show();
if (jform_FRmRFoEGoi_required)
if (jform_EAELSyjEIZ_required)
{
updateFieldRequired('content',0);
jQuery('#jform_content').prop('required','required');
jQuery('#jform_content').attr('aria-required',true);
jQuery('#jform_content').addClass('required');
jform_FRmRFoEGoi_required = false;
jform_EAELSyjEIZ_required = false;
}
}
else
{
jQuery('#jform_content-lbl').closest('.control-group').hide();
if (!jform_FRmRFoEGoi_required)
if (!jform_EAELSyjEIZ_required)
{
updateFieldRequired('content',1);
jQuery('#jform_content').removeAttr('required');
jQuery('#jform_content').removeAttr('aria-required');
jQuery('#jform_content').removeClass('required');
jform_FRmRFoEGoi_required = true;
jform_EAELSyjEIZ_required = true;
}
}
}
// the FRmRFoE Some function
function type_FRmRFoE_SomeFunc(type_FRmRFoE)
// the EAELSyj Some function
function type_EAELSyj_SomeFunc(type_EAELSyj)
{
// set the function logic
if (type_FRmRFoE == 2)
if (type_EAELSyj == 2)
{
return true;
}
return false;
}
// the SJsvpxC function
function SJsvpxC(target_SJsvpxC)
// the pgRfKoF function
function pgRfKoF(target_pgRfKoF)
{
// set the function logic
if (target_SJsvpxC == 1)
if (target_pgRfKoF == 1)
{
jQuery('#jform_groups').closest('.control-group').show();
if (jform_SJsvpxCUFN_required)
if (jform_pgRfKoFgbD_required)
{
updateFieldRequired('groups',0);
jQuery('#jform_groups').prop('required','required');
jQuery('#jform_groups').attr('aria-required',true);
jQuery('#jform_groups').addClass('required');
jform_SJsvpxCUFN_required = false;
jform_pgRfKoFgbD_required = false;
}
}
else
{
jQuery('#jform_groups').closest('.control-group').hide();
if (!jform_SJsvpxCUFN_required)
if (!jform_pgRfKoFgbD_required)
{
updateFieldRequired('groups',1);
jQuery('#jform_groups').removeAttr('required');
jQuery('#jform_groups').removeAttr('aria-required');
jQuery('#jform_groups').removeClass('required');
jform_SJsvpxCUFN_required = true;
jform_pgRfKoFgbD_required = true;
}
}
}