Merge branch '1478-Problemas_varios_en_consolas_visuales' into 'develop'
1478 problemas varios en consolas visuales See merge request artica/pandorafms!944
This commit is contained in:
commit
9de7f7591d
|
@ -205,11 +205,7 @@ switch ($activeTab) {
|
|||
|
||||
// If the background is changed the size is reseted
|
||||
$background_now = $visualConsole['background'];
|
||||
/*if ($background_now != $background && $background) {
|
||||
$sizeBackground = getimagesize($config['homedir'] . '/images/console/background/' . $background);
|
||||
$values['width'] = $sizeBackground[0];
|
||||
$values['height'] = $sizeBackground[1];
|
||||
}*/
|
||||
|
||||
$values['width'] = $width;
|
||||
$values['height'] = $height;
|
||||
switch ($action) {
|
||||
|
@ -237,7 +233,6 @@ switch ($activeTab) {
|
|||
break;
|
||||
|
||||
case 'save':
|
||||
if (!defined('METACONSOLE')) {
|
||||
if ($values['name'] != "" && $values['background'])
|
||||
$idVisualConsole = db_process_sql_insert('tlayout', $values);
|
||||
else
|
||||
|
@ -262,7 +257,6 @@ switch ($activeTab) {
|
|||
$statusProcessInDB = array('flag' => false,
|
||||
'message' => ui_print_error_message(__('Could not be created.'), '', true));
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
break;
|
||||
|
|
|
@ -946,6 +946,9 @@ switch ($action) {
|
|||
$values['image'] = $image;
|
||||
$values['width'] = $width;
|
||||
$values['height'] = $height;
|
||||
if(defined('METACONSOLE') && $values['id_agent'] == 0){
|
||||
$values['id_metaconsole'] = 1;
|
||||
}
|
||||
break;
|
||||
case 'group_item':
|
||||
$values['type'] = GROUP_ITEM;
|
||||
|
|
|
@ -421,7 +421,7 @@ function visual_map_print_item($mode = "read", $layoutData,
|
|||
}
|
||||
}
|
||||
else if ($is_a_link_to_other_visualconsole) {
|
||||
if (empty($layout_data['id_metaconsole'])) {
|
||||
if (empty($layoutData['id_metaconsole'])) {
|
||||
$url = $config['homeurl'] . "index.php?sec=reporting&sec2=operation/visual_console/render_view&pure=" . $config["pure"] . "&id=" . $layoutData["id_layout_linked"];
|
||||
}
|
||||
else {
|
||||
|
@ -1268,8 +1268,11 @@ function visual_map_print_item($mode = "read", $layoutData,
|
|||
$imgpos = 'float:left';
|
||||
}
|
||||
|
||||
$varsize = getimagesize($img);
|
||||
if ($layoutData['id_metaconsole'] != 0) {
|
||||
$img = "../../" . $img;
|
||||
}
|
||||
|
||||
$varsize = getimagesize($img);
|
||||
|
||||
if($layoutData['show_statistics'] == 1){
|
||||
|
||||
|
@ -1364,6 +1367,7 @@ function visual_map_print_item($mode = "read", $layoutData,
|
|||
else{
|
||||
|
||||
if ($width == 0 || $height == 0) {
|
||||
|
||||
if($varsize[0] > 150 || $varsize[1] > 150){
|
||||
echo html_print_image($img, true,
|
||||
array("class" => "image",
|
||||
|
@ -1646,6 +1650,13 @@ function visual_map_print_item($mode = "read", $layoutData,
|
|||
}
|
||||
break;
|
||||
case LABEL:
|
||||
if (get_parameter('action') == 'edit' || get_parameter('operation') == 'edit_visualmap') {
|
||||
$aux_text1 = explode("<a href=\"", $text);
|
||||
$aux_text2 = explode("\">", $aux_text1[1]);
|
||||
$aux_text3 = explode("</a>", $aux_text2[1]);
|
||||
|
||||
$text = $aux_text1[0].$aux_text3[0].$aux_text3[1];
|
||||
}
|
||||
echo io_safe_output($text);
|
||||
break;
|
||||
case ICON:
|
||||
|
@ -2678,10 +2689,11 @@ function visual_map_print_visual_map ($id_layout, $show_links = true,
|
|||
$mapWidth = $layout["width"];
|
||||
$mapHeight = $layout["height"];
|
||||
$backgroundImage = '';
|
||||
if ($layout["background"] != 'None.png' )
|
||||
if ($layout["background"] != 'None.png' ){
|
||||
$backgroundImage = $metaconsole_hack . 'images/console/background/' .
|
||||
$layout["background"];
|
||||
}
|
||||
}
|
||||
|
||||
if (defined('METACONSOLE')) {
|
||||
echo "<div style='width: 100%; overflow:auto; margin: 0 auto; padding:5px;'>";
|
||||
|
|
|
@ -222,7 +222,7 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) {
|
|||
$form_items['enable_link_row']['html'] =
|
||||
'<td align="left" style="">' . __('Enable link') . '</td>
|
||||
<td align="left" style="">' .
|
||||
html_print_checkbox('enable_link', '', !is_metaconsole(), true) . '</td>';
|
||||
html_print_checkbox('enable_link', '', 1, true) . '</td>';
|
||||
|
||||
|
||||
$form_items['preview_row'] = array();
|
||||
|
|
Loading…
Reference in New Issue