Release of v5.1.0
Add [AllowDynamicProperties] in the base view class for J5. Move the _prepareDocument above the display call in the base view class. Remove all backward compatibility issues, so JCB will not need the [Backward Compatibility] plugin to run. Added new import powers for custom import of spreadsheets. Move the setDocument and _prepareDocument above the display in the site view and custom admin view. Update the trashhelper layout to work in Joomla 5. Add AllowDynamicProperties (Joomla 4+5) to view class to allow Custom Dynamic Get methods to work without issues. Fix Save failed issue in dynamicGet. #1148. Move all [TEXT, EDITOR, TEXTAREA] fields from [NOT NULL] to [NULL]. Add the DateHelper class and improve the date methods. Add simple SessionHelper class. Add first classes for the new import engine. Improve the [VDM Registry] to be Joomla Registry Compatible. Move all registries to the [VDM Registry] class. Fix Checked Out to be null and not 0. (#1194). Fix created_by, modified_by, checked_out fields in the compiler of the SQL. (#1194). Update all core date fields in table class. (#1188). Update created_by, modified_by, checked_out fields in table class. Implementation of the decentralized Super-Power CORE repository network. (#1190). Fix the noticeboard to display Llewellyn's Joomla Social feed. Started compiling JCB5 on Joomla 5 with PHP 8.2. Add init_defaults option for dynamic form selection setup (to int new items with default values dynamically). Update all JCB 5 tables to utf8mb4_unicode_ci collation if misaligned. Move all internal ID linking to GUID inside of JCB 5. Updated the admin-tab-fields in add-fields view. #1205. Remove Custom Import Tab from admin view. Improved the customcode and placeholder search features.
This commit is contained in:
@ -9,98 +9,210 @@
|
||||
*/
|
||||
|
||||
// Some Global Values
|
||||
jform_vvvvwcovyc_required = false;
|
||||
jform_vvvvwcpvyd_required = false;
|
||||
jform_vvvvwcqvye_required = false;
|
||||
jform_vvvvwcrvyf_required = false;
|
||||
jform_vvvvwctvyg_required = false;
|
||||
jform_vvvvwcmvxv_required = false;
|
||||
jform_vvvvwcnvxw_required = false;
|
||||
jform_vvvvwcovxx_required = false;
|
||||
jform_vvvvwcpvxy_required = false;
|
||||
jform_vvvvwcrvxz_required = false;
|
||||
|
||||
// Initial Script
|
||||
document.addEventListener('DOMContentLoaded', function()
|
||||
{
|
||||
var location_vvvvwco = jQuery("#jform_location input[type='radio']:checked").val();
|
||||
vvvvwco(location_vvvvwco);
|
||||
var location_vvvvwcm = jQuery("#jform_location input[type='radio']:checked").val();
|
||||
vvvvwcm(location_vvvvwcm);
|
||||
|
||||
var location_vvvvwcp = jQuery("#jform_location input[type='radio']:checked").val();
|
||||
vvvvwcp(location_vvvvwcp);
|
||||
var location_vvvvwcn = jQuery("#jform_location input[type='radio']:checked").val();
|
||||
vvvvwcn(location_vvvvwcn);
|
||||
|
||||
var type_vvvvwco = jQuery("#jform_type").val();
|
||||
vvvvwco(type_vvvvwco);
|
||||
|
||||
var type_vvvvwcp = jQuery("#jform_type").val();
|
||||
vvvvwcp(type_vvvvwcp);
|
||||
|
||||
var type_vvvvwcq = jQuery("#jform_type").val();
|
||||
vvvvwcq(type_vvvvwcq);
|
||||
|
||||
var type_vvvvwcr = jQuery("#jform_type").val();
|
||||
vvvvwcr(type_vvvvwcr);
|
||||
|
||||
var type_vvvvwcs = jQuery("#jform_type").val();
|
||||
vvvvwcs(type_vvvvwcs);
|
||||
|
||||
var target_vvvvwct = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwct(target_vvvvwct);
|
||||
var target_vvvvwcr = jQuery("#jform_target input[type='radio']:checked").val();
|
||||
vvvvwcr(target_vvvvwcr);
|
||||
});
|
||||
|
||||
// the vvvvwco function
|
||||
function vvvvwco(location_vvvvwco)
|
||||
// the vvvvwcm function
|
||||
function vvvvwcm(location_vvvvwcm)
|
||||
{
|
||||
// set the function logic
|
||||
if (location_vvvvwco == 1)
|
||||
if (location_vvvvwcm == 1)
|
||||
{
|
||||
jQuery('#jform_admin_view').closest('.control-group').show();
|
||||
// add required attribute to admin_view field
|
||||
if (jform_vvvvwcovyc_required)
|
||||
if (jform_vvvvwcmvxv_required)
|
||||
{
|
||||
updateFieldRequired('admin_view',0);
|
||||
jQuery('#jform_admin_view').prop('required','required');
|
||||
jQuery('#jform_admin_view').attr('aria-required',true);
|
||||
jQuery('#jform_admin_view').addClass('required');
|
||||
jform_vvvvwcovyc_required = false;
|
||||
jform_vvvvwcmvxv_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_admin_view').closest('.control-group').hide();
|
||||
// remove required attribute from admin_view field
|
||||
if (!jform_vvvvwcovyc_required)
|
||||
if (!jform_vvvvwcmvxv_required)
|
||||
{
|
||||
updateFieldRequired('admin_view',1);
|
||||
jQuery('#jform_admin_view').removeAttr('required');
|
||||
jQuery('#jform_admin_view').removeAttr('aria-required');
|
||||
jQuery('#jform_admin_view').removeClass('required');
|
||||
jform_vvvvwcovyc_required = true;
|
||||
jform_vvvvwcmvxv_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwcp function
|
||||
function vvvvwcp(location_vvvvwcp)
|
||||
// the vvvvwcn function
|
||||
function vvvvwcn(location_vvvvwcn)
|
||||
{
|
||||
// set the function logic
|
||||
if (location_vvvvwcp == 2)
|
||||
if (location_vvvvwcn == 2)
|
||||
{
|
||||
jQuery('#jform_site_view').closest('.control-group').show();
|
||||
// add required attribute to site_view field
|
||||
if (jform_vvvvwcpvyd_required)
|
||||
if (jform_vvvvwcnvxw_required)
|
||||
{
|
||||
updateFieldRequired('site_view',0);
|
||||
jQuery('#jform_site_view').prop('required','required');
|
||||
jQuery('#jform_site_view').attr('aria-required',true);
|
||||
jQuery('#jform_site_view').addClass('required');
|
||||
jform_vvvvwcpvyd_required = false;
|
||||
jform_vvvvwcnvxw_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_site_view').closest('.control-group').hide();
|
||||
// remove required attribute from site_view field
|
||||
if (!jform_vvvvwcpvyd_required)
|
||||
if (!jform_vvvvwcnvxw_required)
|
||||
{
|
||||
updateFieldRequired('site_view',1);
|
||||
jQuery('#jform_site_view').removeAttr('required');
|
||||
jQuery('#jform_site_view').removeAttr('aria-required');
|
||||
jQuery('#jform_site_view').removeClass('required');
|
||||
jform_vvvvwcpvyd_required = true;
|
||||
jform_vvvvwcnvxw_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwco function
|
||||
function vvvvwco(type_vvvvwco)
|
||||
{
|
||||
if (isSet(type_vvvvwco) && type_vvvvwco.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwco = type_vvvvwco;
|
||||
var type_vvvvwco = [];
|
||||
type_vvvvwco.push(temp_vvvvwco);
|
||||
}
|
||||
else if (!isSet(type_vvvvwco))
|
||||
{
|
||||
var type_vvvvwco = [];
|
||||
}
|
||||
var type = type_vvvvwco.some(type_vvvvwco_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
if (type)
|
||||
{
|
||||
jQuery('#jform_url').closest('.control-group').show();
|
||||
// add required attribute to url field
|
||||
if (jform_vvvvwcovxx_required)
|
||||
{
|
||||
updateFieldRequired('url',0);
|
||||
jQuery('#jform_url').prop('required','required');
|
||||
jQuery('#jform_url').attr('aria-required',true);
|
||||
jQuery('#jform_url').addClass('required');
|
||||
jform_vvvvwcovxx_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_url').closest('.control-group').hide();
|
||||
// remove required attribute from url field
|
||||
if (!jform_vvvvwcovxx_required)
|
||||
{
|
||||
updateFieldRequired('url',1);
|
||||
jQuery('#jform_url').removeAttr('required');
|
||||
jQuery('#jform_url').removeAttr('aria-required');
|
||||
jQuery('#jform_url').removeClass('required');
|
||||
jform_vvvvwcovxx_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwco Some function
|
||||
function type_vvvvwco_SomeFunc(type_vvvvwco)
|
||||
{
|
||||
// set the function logic
|
||||
if (type_vvvvwco == 3)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwcp function
|
||||
function vvvvwcp(type_vvvvwcp)
|
||||
{
|
||||
if (isSet(type_vvvvwcp) && type_vvvvwcp.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwcp = type_vvvvwcp;
|
||||
var type_vvvvwcp = [];
|
||||
type_vvvvwcp.push(temp_vvvvwcp);
|
||||
}
|
||||
else if (!isSet(type_vvvvwcp))
|
||||
{
|
||||
var type_vvvvwcp = [];
|
||||
}
|
||||
var type = type_vvvvwcp.some(type_vvvvwcp_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
if (type)
|
||||
{
|
||||
jQuery('#jform_article').closest('.control-group').show();
|
||||
// add required attribute to article field
|
||||
if (jform_vvvvwcpvxy_required)
|
||||
{
|
||||
updateFieldRequired('article',0);
|
||||
jQuery('#jform_article').prop('required','required');
|
||||
jQuery('#jform_article').attr('aria-required',true);
|
||||
jQuery('#jform_article').addClass('required');
|
||||
jform_vvvvwcpvxy_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_article').closest('.control-group').hide();
|
||||
// remove required attribute from article field
|
||||
if (!jform_vvvvwcpvxy_required)
|
||||
{
|
||||
updateFieldRequired('article',1);
|
||||
jQuery('#jform_article').removeAttr('required');
|
||||
jQuery('#jform_article').removeAttr('aria-required');
|
||||
jQuery('#jform_article').removeClass('required');
|
||||
jform_vvvvwcpvxy_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwcp Some function
|
||||
function type_vvvvwcp_SomeFunc(type_vvvvwcp)
|
||||
{
|
||||
// set the function logic
|
||||
if (type_vvvvwcp == 1)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwcq function
|
||||
function vvvvwcq(type_vvvvwcq)
|
||||
{
|
||||
@ -117,118 +229,6 @@ function vvvvwcq(type_vvvvwcq)
|
||||
var type = type_vvvvwcq.some(type_vvvvwcq_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
if (type)
|
||||
{
|
||||
jQuery('#jform_url').closest('.control-group').show();
|
||||
// add required attribute to url field
|
||||
if (jform_vvvvwcqvye_required)
|
||||
{
|
||||
updateFieldRequired('url',0);
|
||||
jQuery('#jform_url').prop('required','required');
|
||||
jQuery('#jform_url').attr('aria-required',true);
|
||||
jQuery('#jform_url').addClass('required');
|
||||
jform_vvvvwcqvye_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_url').closest('.control-group').hide();
|
||||
// remove required attribute from url field
|
||||
if (!jform_vvvvwcqvye_required)
|
||||
{
|
||||
updateFieldRequired('url',1);
|
||||
jQuery('#jform_url').removeAttr('required');
|
||||
jQuery('#jform_url').removeAttr('aria-required');
|
||||
jQuery('#jform_url').removeClass('required');
|
||||
jform_vvvvwcqvye_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwcq Some function
|
||||
function type_vvvvwcq_SomeFunc(type_vvvvwcq)
|
||||
{
|
||||
// set the function logic
|
||||
if (type_vvvvwcq == 3)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwcr function
|
||||
function vvvvwcr(type_vvvvwcr)
|
||||
{
|
||||
if (isSet(type_vvvvwcr) && type_vvvvwcr.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwcr = type_vvvvwcr;
|
||||
var type_vvvvwcr = [];
|
||||
type_vvvvwcr.push(temp_vvvvwcr);
|
||||
}
|
||||
else if (!isSet(type_vvvvwcr))
|
||||
{
|
||||
var type_vvvvwcr = [];
|
||||
}
|
||||
var type = type_vvvvwcr.some(type_vvvvwcr_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
if (type)
|
||||
{
|
||||
jQuery('#jform_article').closest('.control-group').show();
|
||||
// add required attribute to article field
|
||||
if (jform_vvvvwcrvyf_required)
|
||||
{
|
||||
updateFieldRequired('article',0);
|
||||
jQuery('#jform_article').prop('required','required');
|
||||
jQuery('#jform_article').attr('aria-required',true);
|
||||
jQuery('#jform_article').addClass('required');
|
||||
jform_vvvvwcrvyf_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_article').closest('.control-group').hide();
|
||||
// remove required attribute from article field
|
||||
if (!jform_vvvvwcrvyf_required)
|
||||
{
|
||||
updateFieldRequired('article',1);
|
||||
jQuery('#jform_article').removeAttr('required');
|
||||
jQuery('#jform_article').removeAttr('aria-required');
|
||||
jQuery('#jform_article').removeClass('required');
|
||||
jform_vvvvwcrvyf_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwcr Some function
|
||||
function type_vvvvwcr_SomeFunc(type_vvvvwcr)
|
||||
{
|
||||
// set the function logic
|
||||
if (type_vvvvwcr == 1)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwcs function
|
||||
function vvvvwcs(type_vvvvwcs)
|
||||
{
|
||||
if (isSet(type_vvvvwcs) && type_vvvvwcs.constructor !== Array)
|
||||
{
|
||||
var temp_vvvvwcs = type_vvvvwcs;
|
||||
var type_vvvvwcs = [];
|
||||
type_vvvvwcs.push(temp_vvvvwcs);
|
||||
}
|
||||
else if (!isSet(type_vvvvwcs))
|
||||
{
|
||||
var type_vvvvwcs = [];
|
||||
}
|
||||
var type = type_vvvvwcs.some(type_vvvvwcs_SomeFunc);
|
||||
|
||||
|
||||
// set this function logic
|
||||
if (type)
|
||||
{
|
||||
@ -240,45 +240,45 @@ function vvvvwcs(type_vvvvwcs)
|
||||
}
|
||||
}
|
||||
|
||||
// the vvvvwcs Some function
|
||||
function type_vvvvwcs_SomeFunc(type_vvvvwcs)
|
||||
// the vvvvwcq Some function
|
||||
function type_vvvvwcq_SomeFunc(type_vvvvwcq)
|
||||
{
|
||||
// set the function logic
|
||||
if (type_vvvvwcs == 2)
|
||||
if (type_vvvvwcq == 2)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// the vvvvwct function
|
||||
function vvvvwct(target_vvvvwct)
|
||||
// the vvvvwcr function
|
||||
function vvvvwcr(target_vvvvwcr)
|
||||
{
|
||||
// set the function logic
|
||||
if (target_vvvvwct == 1)
|
||||
if (target_vvvvwcr == 1)
|
||||
{
|
||||
jQuery('#jform_groups').closest('.control-group').show();
|
||||
// add required attribute to groups field
|
||||
if (jform_vvvvwctvyg_required)
|
||||
if (jform_vvvvwcrvxz_required)
|
||||
{
|
||||
updateFieldRequired('groups',0);
|
||||
jQuery('#jform_groups').prop('required','required');
|
||||
jQuery('#jform_groups').attr('aria-required',true);
|
||||
jQuery('#jform_groups').addClass('required');
|
||||
jform_vvvvwctvyg_required = false;
|
||||
jform_vvvvwcrvxz_required = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
jQuery('#jform_groups').closest('.control-group').hide();
|
||||
// remove required attribute from groups field
|
||||
if (!jform_vvvvwctvyg_required)
|
||||
if (!jform_vvvvwcrvxz_required)
|
||||
{
|
||||
updateFieldRequired('groups',1);
|
||||
jQuery('#jform_groups').removeAttr('required');
|
||||
jQuery('#jform_groups').removeAttr('aria-required');
|
||||
jQuery('#jform_groups').removeClass('required');
|
||||
jform_vvvvwctvyg_required = true;
|
||||
jform_vvvvwcrvxz_required = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user