diff --git a/pandora_console/extras/mr/65.sql b/pandora_console/extras/mr/65.sql index 8d3b6a903d..0b48fd1a01 100644 --- a/pandora_console/extras/mr/65.sql +++ b/pandora_console/extras/mr/65.sql @@ -1,5 +1,13 @@ START TRANSACTION; +ALTER TABLE `tlayout` +ADD COLUMN `grid_color` VARCHAR(45) NOT NULL DEFAULT '#cccccc' AFTER `maintenance_mode`, +ADD COLUMN `grid_size` VARCHAR(45) NOT NULL DEFAULT '10' AFTER `grid_color`; + +ALTER TABLE `tlayout_template` +ADD COLUMN `grid_color` VARCHAR(45) NOT NULL DEFAULT '#cccccc' AFTER `maintenance_mode`, +ADD COLUMN `grid_size` VARCHAR(45) NOT NULL DEFAULT '10' AFTER `grid_color`; + DELETE FROM tconfig WHERE token = 'refr'; COMMIT; diff --git a/pandora_console/include/ajax/visual_console.ajax.php b/pandora_console/include/ajax/visual_console.ajax.php index cf2f83bdcf..402a5ddc1a 100644 --- a/pandora_console/include/ajax/visual_console.ajax.php +++ b/pandora_console/include/ajax/visual_console.ajax.php @@ -39,6 +39,7 @@ $graph_javascript = (bool) get_parameter('graph_javascript', false); $force_remote_check = (bool) get_parameter('force_remote_check', false); $update_maintanance_mode = (bool) get_parameter('update_maintanance_mode', false); $load_css_cv = (bool) get_parameter('load_css_cv', false); +$update_grid_style = (bool) get_parameter('update_grid_style', false); if ($render_map) { $width = (int) get_parameter('width', '400'); @@ -126,3 +127,22 @@ if ($update_maintanance_mode === true) { echo json_encode(['result' => $result]); return; } + +if ($update_grid_style === true) { + $idVisualConsole = (int) get_parameter('idVisualConsole', 0); + $color = get_parameter('color', '#CCC'); + $size = get_parameter('size', '10'); + + $values = []; + $values['grid_color'] = $color; + $values['grid_size'] = $size; + + $result = db_process_sql_update( + 'tlayout', + $values, + ['id' => $idVisualConsole] + ); + + echo json_encode(['result' => $result]); + return; +} diff --git a/pandora_console/include/functions_html.php b/pandora_console/include/functions_html.php index 27a5f8674d..ed83355760 100644 --- a/pandora_console/include/functions_html.php +++ b/pandora_console/include/functions_html.php @@ -4423,7 +4423,7 @@ function html_print_checkbox_switch_extended( $name.($idcounter[$name] ? $idcounter[$name] : '') ); - $output = '