Change header help icon function #Noticket
This commit is contained in:
parent
9589f61199
commit
e7ea4bbda8
|
@ -44,7 +44,7 @@ switch ($tipo) {
|
||||||
break;
|
break;
|
||||||
case "helpmodal":
|
case "helpmodal":
|
||||||
echo "icono_info.png";
|
echo "icono_info.png";
|
||||||
break;
|
break;
|
||||||
case "modulemodal":
|
case "modulemodal":
|
||||||
echo "icono_popup.png";
|
echo "icono_popup.png";
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -273,7 +273,11 @@ config_check();
|
||||||
$table->data[0][3] = $maintenance_img;
|
$table->data[0][3] = $maintenance_img;
|
||||||
|
|
||||||
// Main help icon
|
// Main help icon
|
||||||
$table->data[0][4] = '<a href="#" class="modalpopup" id="helpmodal"><img src="images/header_help.png""></a>';
|
$table->data[0][4] = '<a href="#" class="modalpopup" id="helpmodal">'.html_print_image("images/header_help.png",
|
||||||
|
true, array(
|
||||||
|
"title" => __('Main help'),
|
||||||
|
"id" => "helpmodal",
|
||||||
|
"class" => "modalpopup")).'</a>';
|
||||||
|
|
||||||
// Logout
|
// Logout
|
||||||
$table->data[0][5] = '<a class="white" href="' . ui_get_full_url('index.php?bye=bye') . '">';
|
$table->data[0][5] = '<a class="white" href="' . ui_get_full_url('index.php?bye=bye') . '">';
|
||||||
|
|
Loading…
Reference in New Issue