mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-31 01:35:36 +02:00
Improve code for get secondary groups
This commit is contained in:
parent
159920a05d
commit
498a353a29
@ -500,7 +500,10 @@ if (enterprise_installed()) {
|
|||||||
false,
|
false,
|
||||||
// Delete_groups.
|
// Delete_groups.
|
||||||
// Do not show the primary group in this selection.
|
// Do not show the primary group in this selection.
|
||||||
array_merge(($secondary_groups_selected['plain'] ?? []), [$agent['id_grupo']])
|
array_merge(
|
||||||
|
(empty($secondary_groups_selected['plain']) === false) ? $secondary_groups_selected['plain'] : [],
|
||||||
|
[$agent['id_grupo']]
|
||||||
|
)
|
||||||
// Include_groups.
|
// Include_groups.
|
||||||
// Size.
|
// Size.
|
||||||
// Simple_multiple_options.
|
// Simple_multiple_options.
|
||||||
|
@ -4843,7 +4843,7 @@ function events_page_general($event)
|
|||||||
if (isset($event['id_agente']) && $event['id_agente'] > 0) {
|
if (isset($event['id_agente']) && $event['id_agente'] > 0) {
|
||||||
enterprise_include_once('include/functions_agents.php');
|
enterprise_include_once('include/functions_agents.php');
|
||||||
$secondary_groups_selected = enterprise_hook('agents_get_secondary_groups', [$event['id_agente'], is_metaconsole()]);
|
$secondary_groups_selected = enterprise_hook('agents_get_secondary_groups', [$event['id_agente'], is_metaconsole()]);
|
||||||
if (!empty($secondary_groups_selected)) {
|
if (empty($secondary_groups_selected['for_select']) === false) {
|
||||||
$secondary_groups = implode(', ', $secondary_groups_selected['for_select']);
|
$secondary_groups = implode(', ', $secondary_groups_selected['for_select']);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user