This commit is contained in:
Pablo Aragon 2023-03-24 12:29:03 +01:00
parent 0fa79e44f1
commit 95edb47d01
2 changed files with 12 additions and 31 deletions

View File

@ -269,6 +269,7 @@
$(this).change(function() {
var id_os = this.value;
$("select#id_os").select2("close");
var home_url;
if (typeof settings == "undefined") home_url = "./";

View File

@ -230,10 +230,15 @@ if ((bool) check_acl($config['id_user'], $id_group, 'LW') === true || (bool) che
'title' => __('Standby'),
'text' => __('Standby'),
],
[
'title' => __('Operations'),
'text' => __('Operations'),
],
);
$columns = array_merge(
['standby'],
['force'],
$columns
);
@ -270,7 +275,11 @@ if ((bool) check_acl($config['id_user'], $id_group, 'AW') === true || (bool) che
$column_names,
['text' => 'Module'],
['text' => 'Template'],
['text' => 'Operation'],
[
'title' => __('Actions'),
'text' => __('Actions'),
'style' => 'min-width: 15%;',
],
['text' => 'Last fired'],
['text' => 'Status']
);
@ -279,25 +288,12 @@ if ((bool) check_acl($config['id_user'], $id_group, 'AW') === true || (bool) che
$columns,
['agent_module_name'],
['template_name'],
['operation'],
['actions'],
['last_fired'],
['status']
);
}
if ($print_agent === true) {
array_push(
$column_names,
['text' => 'Agent']
);
$columns = array_merge(
$columns,
['agent_name']
);
}
if (is_metaconsole() === false) {
if ((bool) check_acl($config['id_user'], $id_group, 'LW') === true || (bool) check_acl($config['id_user'], $id_group, 'LM') === true) {
array_unshift(
@ -315,22 +311,6 @@ if (is_metaconsole() === false) {
$columns
);
}
if ((bool) check_acl($config['id_user'], $id_group, 'AW') === true || (bool) check_acl($config['id_user'], $id_group, 'LM') === true) {
array_push(
$column_names,
[
'title' => __('Actions'),
'text' => __('Actions'),
'style' => 'min-width: 15%;',
]
);
$columns = array_merge(
$columns,
['actions']
);
}
}
if (is_metaconsole() === true) {