mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-21 15:33:23 +01:00
Allow text "all_no_acl" for globalCategories
This commit is contained in:
parent
bf365528ec
commit
e7ed302ea0
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user