Release of v4.0.3-beta3
Fix the missing edit button on fields in the related views. Fix the dashboard display. Place the search option back in the use field of the related views. Fix the namespace issue that broken the linker.
This commit is contained in:
@ -2026,15 +2026,15 @@ class AjaxModel extends ListModel
|
||||
{
|
||||
// check if we have GUID setup
|
||||
$validGUID = function ($guid) {
|
||||
if (method_exists('ComponentbuilderHelper', 'validGUID') && ComponentbuilderHelper::validGUID($guid))
|
||||
if (method_exists(ComponentbuilderHelper::class, 'validGUID') && ComponentbuilderHelper::validGUID($guid))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
};
|
||||
// check if functions exists
|
||||
$guidEdit = method_exists('ComponentbuilderHelper', 'getEditButtonGUID');
|
||||
$getEdit = method_exists('ComponentbuilderHelper', 'getEditButton');
|
||||
$guidEdit = method_exists(ComponentbuilderHelper::class, 'getEditButtonGUID');
|
||||
$getEdit = method_exists(ComponentbuilderHelper::class, 'getEditButton');
|
||||
// reset bucket
|
||||
$bucket = array();
|
||||
if (UtilitiesArrayHelper::check($value))
|
||||
|
Reference in New Issue
Block a user