Release of v4.0.0-alpha4

Fix plugin field selection. Fix plugin params tab layout. Add issue templates. Force autoloader to always load. Fix repeatable layout #1076.
This commit is contained in:
2024-03-15 12:12:09 +02:00
parent d5a2f70c0c
commit 9fe4823468
69 changed files with 257 additions and 199 deletions

View File

@ -5484,12 +5484,12 @@ abstract class ComponentbuilderHelper
*
* @returns string on success
**/
public static function getSubformLayout($view, $field, $default = 'repeatablejcb')
public static function getSubformLayout($view, $field, $default = 'joomla.form.field.subform.repeatable-table')
{
// get global values
if (self::$subformLayouts === false)
{
self::$subformLayouts = \JComponentHelper::getParams('com_componentbuilder')->get('subform_layouts', false);
self::$subformLayouts = ComponentHelper::getParams('com_componentbuilder')->get('subform_layouts', false);
}
// check what we found (else) return default
if (ObjectHelper::check(self::$subformLayouts))