Fix printing elements in visual console (revert) - #90

This commit is contained in:
enriquecd 2017-03-09 19:52:37 +01:00
parent a06389b652
commit 94fceaaa5d
1 changed files with 24 additions and 8 deletions

View File

@ -1160,7 +1160,11 @@ function visual_map_print_item($mode = "read", $layoutData,
if (is_file($config['homedir'] . '/' . $img))
$infoImage = getimagesize($config['homedir'] . '/' . $img);
if ($height !== 0 || $height !== 0) {
if ($height == 0 || $height == 0) {
$height = '70px';
$width = '70px';
}
else {
$height = (integer)($proportion['proportion_height'] * $height);
$width = (integer)($proportion['proportion_width'] * $width);
}
@ -1168,18 +1172,29 @@ function visual_map_print_item($mode = "read", $layoutData,
$imgpos = '';
if ($layoutData['label_position']=='up') {
if($layoutData['label_position']=='up'){
echo io_safe_output($text);
}
if ($layoutData['label_position']=='left') {
if($layoutData['label_position']=='left'){
$imgpos = 'float:right';
}
elseif ($layoutData['label_position']=='right') {
else if($layoutData['label_position']=='right'){
$imgpos = 'float:left';
}
$varsize = getimagesize($img);
if ($width == 0 || $height == 0) {
if($varsize[0] > 150 || $varsize[1] > 150){
echo html_print_image($img, true,
array("class" => "image",
"id" => "image_" . $id,
"width" => "70px",
"height" => "70px",
"title" => $img_style_title,
"style" => $borderStyle.$imgpos), false,
false, false, $isExternalLink);
}
else{
echo html_print_image($img, true,
array("class" => "image",
"id" => "image_" . $id,
@ -1187,6 +1202,7 @@ function visual_map_print_item($mode = "read", $layoutData,
"style" => $borderStyle.$imgpos), false,
false, false, $isExternalLink);
}
}
else{
echo html_print_image($img, true,
array("class" => "image",