Merge branch 'ent-9662-Restyling-fuentes-colores-botones' of brutus.artica.es:artica/pandorafms into ent-9662-Restyling-fuentes-colores-botones

This commit is contained in:
Pablo Aragon 2023-02-22 15:02:14 +01:00
commit ac4a76d653
3 changed files with 290 additions and 199 deletions

View File

@ -14,7 +14,7 @@
* |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______|
* *
* ============================================================================ * ============================================================================
* Copyright (c) 2005-2021 Artica Soluciones Tecnologicas * Copyright (c) 2005-2023 Artica Soluciones Tecnologicas
* Please see http://pandorafms.org for full contribution list * Please see http://pandorafms.org for full contribution list
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License * modify it under the terms of the GNU General Public License
@ -71,15 +71,13 @@ if (is_ajax()) {
$table = new stdClass(); $table = new stdClass();
$table->width = '100%'; $table->width = '100%';
$table->head[0] = __('Network Components'); $table->head[0] = __('Network Components');
$table->data = []; // $table->data = [];
foreach ($network_components as $net_comp) { foreach ($network_components as $net_comp) {
$table->data[] = [$net_comp['name']]; $table->data[] = [$net_comp['name']];
} }
if (!empty($table->data)) { if (empty($table->data) === false) {
html_print_table($table); html_print_table($table);
echo '<br />';
} }
$table = new stdClass(); $table = new stdClass();
@ -236,22 +234,22 @@ if ($filemanager) {
$tabs = [ $tabs = [
'list' => [ 'list' => [
'text' => '<a href="'.$base_url.'">'.html_print_image( 'text' => '<a href="'.$base_url.'">'.html_print_image(
'images/eye_show.png', 'images/see-details@svg.svg',
true, true,
[ [
'title' => __('Plugins'), 'title' => __('Plugins'),
'class' => 'invert_filter', 'class' => 'invert_filter main_menu_icon',
] ]
).'</a>', ).'</a>',
'active' => (bool) ($tab != 'Attachments'), 'active' => (bool) ($tab != 'Attachments'),
], ],
'options' => [ 'options' => [
'text' => '<a href="'.$setup_url.'">'.html_print_image( 'text' => '<a href="'.$setup_url.'">'.html_print_image(
'images/collection.png', 'images/file-collection@svg.svg',
true, true,
[ [
'title' => __('Attachments'), 'title' => __('Attachments'),
'class' => 'invert_filter', 'class' => 'invert_filter main_menu_icon',
] ]
).'</a>', ).'</a>',
'active' => (bool) ($tab == 'Attachments'), 'active' => (bool) ($tab == 'Attachments'),
@ -333,35 +331,37 @@ if ($filemanager) {
// ===================================================================== // =====================================================================
$sec = 'gservers'; $sec = 'gservers';
if (($create != '') || ($view != '')) { if (empty($create) === false || empty($view) === false) {
enterprise_hook('open_meta_frame'); enterprise_hook('open_meta_frame');
$management_allowed = is_management_allowed(); $management_allowed = is_management_allowed();
if (defined('METACONSOLE')) { if (is_metaconsole() === true) {
components_meta_print_header(); components_meta_print_header();
$sec = 'advanced'; $sec = 'advanced';
if ($management_allowed === false) { if ($management_allowed === false) {
ui_print_warning_message(__('To manage plugin you must activate centralized management')); ui_print_warning_message(__('To manage plugin you must activate centralized management'));
} }
} else { } else {
if ($create != '') { // Header.
ui_print_page_header( ui_print_standard_header(
__('Plugin registration'), (empty($create) === false) ? __('Plugin registration') : __('Plugin update'),
'images/gm_servers.png', 'images/gm_servers.png',
false, false,
'', '',
true true,
[],
[
[
'link' => '',
'label' => __('Servers'),
],
[
'link' => 'index.php?sec=gservers&sec2=godmode/servers/plugin',
'label' => __('Plugins'),
],
]
); );
} else {
ui_print_page_header(
__('Plugin update'),
'images/gm_servers.png',
false,
'',
true
);
}
if ($management_allowed === false) { if ($management_allowed === false) {
ui_print_warning_message( ui_print_warning_message(
@ -373,66 +373,7 @@ if (($create != '') || ($view != '')) {
} }
} }
$plugin_id = (int) get_parameter('view');
if ($create == '') {
$plugin_id = get_parameter('view', '');
echo "<form name=plugin method='post' action='index.php?sec=gservers&sec2=godmode/servers/plugin&tab=$tab&update_plugin=$plugin_id&pure=".$config['pure']."'>";
} else {
echo "<form name=plugin method='post' action='index.php?sec=gservers&sec2=godmode/servers/plugin&tab=$tab&create_plugin=1&pure=".$config['pure']."'>";
}
$table = new stdClass();
$table->width = '100%';
$table->id = 'table-form';
$table->class = 'databox filters';
$table->style = [];
$table->style[0] = 'font-weight: bold';
$table->style[2] = 'font-weight: bold';
$table->data = [];
$data = [];
$data[0] = __('Name');
$data[1] = '<input type="text" class="text_input" name="form_name" size=100 value="'.$form_name.'">';
$table->colspan['plugin_name'][1] = 3;
$table->data['plugin_name'] = $data;
$data = [];
$data[0] = __('Plugin type');
$fields[0] = __('Standard');
$fields[1] = __('Nagios');
$data[1] = html_print_select($fields, 'form_plugin_type', $form_plugin_type, '', '', 0, true);
$table->data['plugin_type'] = $data;
$table->colspan['plugin_type'][1] = 3;
$data[0] = __('Max. timeout').ui_print_help_tip(__('This value only will be applied if is minor than the server general configuration plugin timeout').'. <br><br>'.__('If you set a 0 seconds timeout, the server plugin timeout will be used'), true);
$data[1] = html_print_extended_select_for_time('form_max_timeout', $form_max_timeout, '', '', '0', false, true);
$table->data['plugin_timeout'] = $data;
$data = [];
$data[0] = __('Description');
$data[1] = '<textarea name="form_description" cols="50" rows="4">'.$form_description.'</textarea>';
$table->colspan['plugin_desc'][1] = 3;
$table->data['plugin_desc'] = $data;
$table->width = '100%';
$table->class = 'databox filters';
if (defined('METACONSOLE')) {
$table->head[0] = __('General');
$table->head_colspan[0] = 4;
$table->headstyle[0] = 'text-align: center';
html_print_table($table);
} else {
echo '<fieldset><legend>'.__('General').'</legend>';
html_print_table($table);
echo '</fieldset>';
}
$table->data = [];
$plugin_id = get_parameter('view', 0);
$locked = true; $locked = true;
// If we have plugin id (update mode) and this plugin used by any module or component // If we have plugin id (update mode) and this plugin used by any module or component
@ -447,33 +388,152 @@ if (($create != '') || ($view != '')) {
$locked = false; $locked = false;
} }
$disabled = ''; $disabled = ($locked === true) ? 'readonly="readonly"' : '';
if ($locked) {
$disabled = 'readonly="readonly"'; if (empty($create) === true) {
$formAction = 'index.php?sec=gservers&sec2=godmode/servers/plugin&tab=$tab&update_plugin=$plugin_id&pure='.$config['pure'];
} else {
$formAction = 'index.php?sec=gservers&sec2=godmode/servers/plugin&tab=$tab&create_plugin=1&pure='.$config['pure'];
} }
$formPluginType = [
0 => __('Standard'),
1 => __('Nagios'),
];
echo '<form class="max_floating_element_size" name="plugin" method="post" action="'.$formAction.'">';
$table = new stdClass();
$table->id = 'table-form';
$table->class = 'floating_form';
$table->style = [];
$table->data['plugin_name_captions'] = $data;
$table->style[0] = 'vertical-align: top';
$table->style[1] = 'vertical-align: top';
$table->data = [];
// General title.
$generalTitleContent = [];
$generalTitleContent[] = html_print_div([ 'style' => 'width: 10px; flex: 0 0 auto; margin-right: 5px;}', 'class' => 'section_table_title_line' ], true);
$generalTitleContent[] = html_print_div([ 'class' => 'section_table_title', 'content' => __('General')], true);
$data[0] = html_print_div(['class' => 'flex-row-center', 'content' => implode('', $generalTitleContent) ], true);
$table->data['general_title'] = $data;
$data = [];
$data[0] = __('Name');
$table->data['plugin_name_captions'] = $data;
$data = [];
$data[0] = html_print_input_text('form_name', $form_name, '', 100, 255, true, false, false, '', 'w100p');
$table->data['plugin_name_inputs'] = $data;
$table->colspan['plugin_name_inputs'][0] = 3;
$data = [];
$data[0] = __('Plugin type');
$data[1] = __('Max. timeout');
$table->data['plugin_type_timeout_captions'] = $data;
// $table->colspan['plugin_type'][1] = 3;
$data = [];
$data[0] = html_print_select($formPluginType, 'form_plugin_type', $form_plugin_type, '', '', 0, true);
$timeoutContent = [];
$timeoutContent[] = '<div>'.html_print_extended_select_for_time('form_max_timeout', $form_max_timeout, '', '', '0', false, true).'</div>';
$timeoutContent[] = ui_print_input_placeholder(__('This value only will be applied if is minor than the server general configuration plugin timeout').'<br>'.__('If you set a 0 seconds timeout, the server plugin timeout will be used'), true);
$data[1] = html_print_div(
[
'class' => 'flex flex_column',
'content' => implode('', $timeoutContent),
],
true
);
$table->data['plugin_type_timeout_inputs'] = $data;
$data = [];
$data[0] = __('Description');
$table->data['plugin_desc_captions'] = $data;
$data = [];
$data[0] = html_print_textarea('form_description', 4, 50, $form_description, '', true, 'w100p');
$table->colspan['plugin_desc_inputs'][0] = 3;
$table->data['plugin_desc_inputs'] = $data;
/*
if (is_metaconsole() === true) {
$table->head[0] = __('General');
$table->head_colspan[0] = 4;
$table->headstyle[0] = 'text-align: center';
html_print_table($table);
} else {
echo '<fieldset><legend>'.__('General').'</legend>';
html_print_table($table);
echo '</fieldset>';
}
html_print_table($table);
$table->data = [];
*/
// Command title.
$commandTitleContent = [];
$commandTitleContent[] = html_print_div([ 'style' => 'width: 10px; flex: 0 0 auto; margin-right: 5px;}', 'class' => 'section_table_title_line' ], true);
$commandTitleContent[] = html_print_div([ 'class' => 'section_table_title', 'content' => __('Command')], true);
$data = [];
$data[0] = html_print_div(['class' => 'flex-row-center', 'content' => implode('', $commandTitleContent) ], true);
$table->data['command_title'] = $data;
$data = []; $data = [];
$data[0] = __('Plugin command').ui_print_help_tip(__('Specify interpreter and plugin path. The server needs permissions to run it.'), true); $data[0] = __('Plugin command').ui_print_help_tip(__('Specify interpreter and plugin path. The server needs permissions to run it.'), true);
$data[1] = '<input type="text" name="form_execute" id="form_execute" class="command_component command_advanced_conf text_input" size=100 value="'.$form_execute.'" >'; $table->data['plugin_command_caption'] = $data;
$data[1] .= ' <a href="index.php?sec=gservers&sec2=godmode/servers/plugin&filemanager=1&tab=Attachments&id_plugin='.$form_id.'" class="bot">'; $data = [];
$data[1] .= html_print_image('images/file.png', true, ['class' => 'invert_filter'], false, true); $formExecuteContent = [];
$data[1] .= '</a>'; $formExecuteContent[] = html_print_input_text('form_execute', $form_execute, '', 50, 255, true, false, false, '', 'command_component command_advanced_conf w100p');
$table->data['plugin_command'] = $data; $formExecuteContent[] = html_print_anchor(
[
'title' => __('Save changes'),
'href' => 'index.php?sec=gservers&sec2=godmode/servers/plugin&filemanager=1&tab=Attachments&id_plugin='.$form_id,
'class' => 'mrgn_lft_5px',
'content' => html_print_image('images/validate.svg', true, ['class' => 'main_menu_icon invert_filter'], false, true),
],
true
);
$data[0] = html_print_div(['class' => 'flex-row-center', 'content' => implode('', $formExecuteContent)], true);
$table->data['plugin_command_inputs'] = $data;
$table->colspan['plugin_command_inputs'][0] = 2;
$data = []; $data = [];
$data[0] = __('Plug-in parameters'); $data[0] = __('Plug-in parameters');
$data[1] = '<input type="text" name="form_parameters" id="form_parameters" class="command_component command_advanced_conf text_input" size=100 value="'.$parameters.'" >'; $table->data['plugin_parameters_caption'] = $data;
$table->data['plugin_parameters'] = $data;
$data = [];
$data[0] = html_print_input_text(
'form_parameters',
$parameters,
'',
100,
255,
true,
false,
false,
'',
'command_component command_advanced_conf text_input w100p'
);
$table->data['plugin_parameters_inputs'] = $data;
$table->colspan['plugin_parameters_inputs'][0] = 2;
$data = []; $data = [];
$data[0] = __('Command preview'); $data[0] = __('Command preview');
$data[1] = '<div id="command_preview" class="italic"></div>'; $table->data['plugin_preview_captions'] = $data;
$table->data['plugin_preview'] = $data; $data = [];
$data[0] = html_print_div(['id' => 'command_preview', 'class' => 'mono'], true);
$table->data['plugin_preview_inputs'] = $data;
$table->colspan['plugin_preview_inputs'][0] = 2;
/*
$table->width = '100%'; $table->width = '100%';
$table->class = 'databox filters'; $table->class = 'databox filters';
if (defined('METACONSOLE')) { if (is_metaconsole() === true) {
$table->head[0] = __('Command'); $table->head[0] = __('Command');
$table->head_colspan[0] = 4; $table->head_colspan[0] = 4;
$table->headstyle[0] = 'text-align: center'; $table->headstyle[0] = 'text-align: center';
@ -483,10 +543,15 @@ if (($create != '') || ($view != '')) {
html_print_table($table); html_print_table($table);
echo '</fieldset>'; echo '</fieldset>';
} }
*/
// Parameters macros title.
$macrosTitleContent = [];
$macrosTitleContent[] = html_print_div([ 'style' => 'width: 10px; flex: 0 0 auto; margin-right: 5px;}', 'class' => 'section_table_title_line' ], true);
$macrosTitleContent[] = html_print_div([ 'class' => 'section_table_title', 'content' => __('Parameters macros')], true);
$data = []; $data = [];
$data[0] = html_print_div(['class' => 'flex-row-center', 'content' => implode('', $macrosTitleContent) ], true);
$table->data = []; $table->data['parameters_macros_title'] = $data;
$macros = json_decode($macros, true); $macros = json_decode($macros, true);
@ -494,8 +559,8 @@ if (($create != '') || ($view != '')) {
$next_name_number = 9; $next_name_number = 9;
$i = 1; $i = 1;
while (1) { while (1) {
// Always print at least one macro // Always print at least one macro.
if ((!isset($macros[$i]) || $macros[$i]['desc'] == '') && $i > 1) { if ((isset($macros[$i]) === false || $macros[$i]['desc'] == '') && $i > 1) {
break; break;
} }
@ -617,9 +682,15 @@ if (($create != '') || ($view != '')) {
$table->headstyle[0] = 'text-align: center'; $table->headstyle[0] = 'text-align: center';
html_print_table($table); html_print_table($table);
} else { } else {
echo '<fieldset>'.'<legend>'.__('Parameters macros').'</legend>'; // echo '<fieldset>'.'<legend>'.__('Parameters macros').'</legend>';
html_print_table($table); html_print_div(
echo '</fieldset>'; [
'class' => 'info_table',
'content' => html_print_table($table, true),
]
);
// echo '</fieldset>';
} }
echo '<table width="100%">'; echo '<table width="100%">';
@ -658,22 +729,22 @@ if (($create != '') || ($view != '')) {
$tabs = [ $tabs = [
'list' => [ 'list' => [
'text' => '<a href="'.$base_url.'">'.html_print_image( 'text' => '<a href="'.$base_url.'">'.html_print_image(
'images/eye_show.png', 'images/see-details@svg.svg',
true, true,
[ [
'title' => __('Plugins'), 'title' => __('Plugins'),
'class' => 'invert_filter', 'class' => 'invert_filter main_menu_icon',
] ]
).'</a>', ).'</a>',
'active' => (bool) ($tab != 'Attachments'), 'active' => (bool) ($tab != 'Attachments'),
], ],
'options' => [ 'options' => [
'text' => '<a href="'.$setup_url.'">'.html_print_image( 'text' => '<a href="'.$setup_url.'">'.html_print_image(
'images/collection.png', 'images/file-collection@svg.svg',
true, true,
[ [
'title' => __('Attachments'), 'title' => __('Attachments'),
'class' => 'invert_filter', 'class' => 'invert_filter main_menu_icon',
] ]
).'</a>', ).'</a>',
'active' => (bool) ($tab == 'Attachments'), 'active' => (bool) ($tab == 'Attachments'),
@ -884,55 +955,32 @@ if (($create != '') || ($view != '')) {
$rows = db_get_all_rows_sql('SELECT * FROM tplugin ORDER BY name'); $rows = db_get_all_rows_sql('SELECT * FROM tplugin ORDER BY name');
if ($rows !== false) { if ($rows !== false) {
if (defined('METACONSOLE')) { $pluginTable = new stdClass();
echo '<table width="100%" cellspacing="4" cellpadding="4" class="databox data">'; $pluginTable->id = 'plugin_table';
} else { $pluginTable->class = (is_metaconsole() === true) ? 'databox data' : 'info_table m2020';
echo '<table width="100%" cellspacing="4" cellpadding="4" class="info_table">';
$pluginTable->head = [];
$pluginTable->head[0] = __('Name');
$pluginTable->head[1] = __('Type');
$pluginTable->head[2] = __('Command');
if ($management_allowed === true) {
$pluginTable->head[3] = '<span title="'.__('Operations').'">'.__('Op.').'</span>';
} }
echo '<thead><tr>'; $pluginTable->data = [];
echo '<th>'.__('Name').'</th>';
echo '<th>'.__('Type').'</th>';
echo '<th>'.__('Command').'</th>';
if ($management_allowed) {
echo "<th class='w120px'>".'<span title="Operations">'.__('Op.').'</span>'.'</th>';
}
echo '</tr></thead>'; foreach ($rows as $k => $row) {
if ($management_allowed === true) {
$tableActionButtons = [];
$pluginNameContent = html_print_anchor(
[
'href' => 'index.php?sec=$sec&sec2=godmode/servers/plugin&view='.$row['id'].'&tab=plugins&pure='.$config['pure'],
'content' => $row['name'],
],
true
);
$color = 0; // Show it is locket.
foreach ($rows as $row) {
if ($color == 1) {
$tdcolor = 'datos';
$color = 0;
} else {
$tdcolor = 'datos2';
$color = 1;
}
echo '<tr>';
echo "<td class=$tdcolor>";
if ($management_allowed) {
echo "<b><a href='index.php?sec=$sec&sec2=godmode/servers/plugin&view=".$row['id'].'&tab=plugins&pure='.$config['pure']."'>";
}
echo $row['name'];
echo '</a></b></td>';
echo "<td class=$tdcolor>";
if ($row['plugin_type'] == 0) {
echo __('Standard');
} else {
echo __('Nagios');
}
echo "</td><td class=$tdcolor>";
echo $row['execute'];
echo '</td>';
if ($management_allowed) {
echo "<td class='$tdcolor' align='center'>";
// Show it is locket
$modules_using_plugin = db_get_value_filter( $modules_using_plugin = db_get_value_filter(
'count(*)', 'count(*)',
'tagente_modulo', 'tagente_modulo',
@ -947,49 +995,93 @@ if (($create != '') || ($view != '')) {
['id_plugin' => $row['id']] ['id_plugin' => $row['id']]
); );
if (($components_using_plugin + $modules_using_plugin) > 0) { if (($components_using_plugin + $modules_using_plugin) > 0) {
echo '<a href="javascript: show_locked_dialog('.$row['id'].', \''.$row['name'].'\');">'; $tableActionButtons[] = html_print_anchor(
html_print_image('images/lock_mc.png', false, ['class' => 'invert_filter']); [
echo '</a>'; 'href' => 'javascript: show_locked_dialog('.$row['id'].', \''.$row['name'].'\');',
'content' => html_print_image(
'images/policy@svg.svg',
true,
[
'title' => __('Lock'),
'class' => 'main_menu_icon invert_filter',
]
),
],
true
);
} }
echo "<a href='index.php?sec=$sec&sec2=godmode/servers/plugin&tab=$tab&view=".$row['id'].'&tab=plugins&pure='.$config['pure']."'>".html_print_image( $tableActionButtons[] = html_print_anchor(
'images/config.png', [
'href' => 'index.php?sec=$sec&sec2=godmode/servers/plugin&tab=$tab&view='.$row['id'].'&tab=plugins&pure='.$config['pure'],
'content' => html_print_image(
'images/edit.svg',
true, true,
[ [
'title' => __('Edit'), 'title' => __('Edit'),
'class' => 'invert_filter', 'class' => 'invert_filter main_menu_icon ',
] ]
).'</a>&nbsp;&nbsp;'; ),
],
true
);
if ((bool) $row['no_delete'] === false) { if ((bool) $row['no_delete'] === false) {
echo "<a href='index.php?sec=$sec&sec2=godmode/servers/plugin&tab=$tab&kill_plugin=".$row['id'].'&tab=plugins&pure='.$config['pure']."' onclick='javascript: if (!confirm(\"".__('All the modules that are using this plugin will be deleted').'. '.__('Are you sure?')."\")) return false;'>".html_print_image( $tableActionButtons[] = html_print_anchor(
'images/cross.png', [
'href' => 'index.php?sec=$sec&sec2=godmode/servers/plugin&tab=$tab&kill_plugin='.$row['id'].'&tab=plugins&pure='.$config['pure'],
'onClick' => 'javascript: if (!confirm(\''.__('All the modules that are using this plugin will be deleted').'. '.__('Are you sure?').'\')) return false;',
'content' => html_print_image(
'images/delete.svg',
true, true,
[ [
'border' => '0', 'title' => __('Delete'),
'class' => 'invert_filter', 'class' => 'invert_filter main_menu_icon',
] ]
).'</a>'; ),
],
true
);
}
} else {
$pluginNameContent = $row['name'];
} }
echo '</td>'; $pluginTable->data[$k][0] = $pluginNameContent;
$pluginTable->data[$k][1] = ((int) $row['plugin_type'] === 0) ? __('Standard') : __('Nagios');
$pluginTable->data[$k][2] = $row['execute'];
if ($management_allowed === true) {
$pluginTable->data[$k][3] = html_print_div(
[
'class' => 'table_action_buttons',
'content' => implode('', $tableActionButtons),
],
true
);
}
} }
echo '</tr>'; html_print_table($pluginTable);
}
echo '</table>';
} else { } else {
ui_print_info_message(['no_close' => true, 'message' => __('There are no plugins in the system') ]); ui_print_info_message(['no_close' => true, 'message' => __('There are no plugins in the system') ]);
} }
if ($management_allowed) { if ($management_allowed === true) {
echo "<table width='100%'>"; echo '<form name="plugin" method="POST" action="index.php?sec=gservers&sec2=godmode/servers/plugin&tab=$tab&create=1&pure='.$config['pure'].'">';
echo '<tr><td align=right>'; html_print_action_buttons(
echo "<form name=plugin method='post' action='index.php?sec=gservers&sec2=godmode/servers/plugin&tab=$tab&create=1&pure=".$config['pure']."'>"; html_print_submit_button(
echo "<input name='crtbutton' type='submit' class='sub next' value='".__('Add')."'>"; __('Add plugin'),
echo '</td></tr></table>'; 'crtbutton',
echo '<div id="deploy_messages" class="invisible">'; false,
[ 'icon' => 'wand' ],
true
),
['type' => 'form_action']
);
echo '</form>';
} }
// The '%s' will be replaced in the javascript code of the function 'show_locked_dialog'. // The '%s' will be replaced in the javascript code of the function 'show_locked_dialog'.
@ -1007,9 +1099,8 @@ ui_require_javascript_file('pandora_modules');
var locked = <?php echo (int) json_encode((int) $locked); ?>; var locked = <?php echo (int) json_encode((int) $locked); ?>;
function update_preview() { function update_preview() {
var command = $('#form_execute').val(); var command = $('#text-form_execute').val();
var parameters = $('#form_parameters').val(); var parameters = $('#text-form_parameters').val();
var i = 1; var i = 1;
while (1) { while (1) {

View File

@ -668,8 +668,8 @@ class Tree
} }
} }
$module['statusImageHTML'] = ui_print_status_image($statusType, htmlspecialchars($statusTitle), true); $module['statusImageHTML'] = ui_print_status_image($statusType, htmlspecialchars($statusTitle), true, ['is_tree_view' => true]);
hd($module['statusImageHTML'], true);
// HTML of the server type image. // HTML of the server type image.
$module['serverTypeHTML'] = ui_print_servertype_icon((int) $module['server_type']); $module['serverTypeHTML'] = ui_print_servertype_icon((int) $module['server_type']);
@ -904,7 +904,7 @@ class Tree
// Quiet image // Quiet image
if (isset($agent['quiet']) && $agent['quiet']) { if (isset($agent['quiet']) && $agent['quiet']) {
$agent['statusImageHTML'] = ui_print_status_sets('agent_no_monitors_ball.png', __('Quiet'), 1, ['class' => 'status_balls', 'style' => 'background: '.COL_QUIET.';'], '', false); $agent['statusImageHTML'] = ui_print_status_sets('agent_no_monitors_ball.png', __('Quiet'), 1, ['is_tree_view' => 'yes', 'class' => 'status_balls', 'style' => 'background: '.COL_QUIET.';'], '', false);
} }
// Children // Children

View File

@ -6648,7 +6648,7 @@ function html_print_extended_select_for_downtime_cron(
* - `wrapper`: string. Must be a valid tag. * - `wrapper`: string. Must be a valid tag.
* - `wrapper_attributes`: string. Valid attributes for a wrapper. * - `wrapper_attributes`: string. Valid attributes for a wrapper.
* *
* @return array. * @return array
*/ */
function html_print_subtitle_table(string $caption, array $options=[]) function html_print_subtitle_table(string $caption, array $options=[])
{ {