Release of v5.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:26:29 +02:00
parent 4ef96e9931
commit 8deb178d7c
70 changed files with 265 additions and 203 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))