Allow text "all_no_acl" for globalCategories

This commit is contained in:
ralf 2024-09-26 18:36:50 +02:00
parent bf365528ec
commit e7ed302ea0

View File

@ -763,8 +763,19 @@ class Select extends Etemplate\Widget
{
$categories = new Api\Categories($type5, $application);
}
// Allow text for global
$globalCategories = $globalCategories && (strlen($globalCategories) > 1 ? $globalCategories === 'true' : (bool)$globalCategories);
// Allow text "all_no_acl" for globalCategories
switch($globalCategories)
{
case 'all_no_acl':
break;
case 'true':
case 'false':
$globalCategories = $globalCategories === 'true';
break;
default:
$globalCategories = (bool)$globalCategories;
break;
}
// we cast $type4 (parent) to int, to get default of 0 if omitted
$cats = $categories->return_sorted_array(0, False, '', '', '', $globalCategories, (int)$parentCat, true) ?: [];
$cat2option = static function(array $cat) use (&$cat2option, $globalCategories, $cats)