2011-02-28 17:53:09 +01:00
|
|
|
<?php
|
|
|
|
// Pandora FMS - http://pandorafms.com
|
|
|
|
// ==================================================
|
|
|
|
// Copyright (c) 2005-2009 Artica Soluciones Tecnologicas
|
|
|
|
// Please see http://pandorafms.org for full contribution list
|
|
|
|
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License
|
|
|
|
// as published by the Free Software Foundation for version 2.
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// Login check
|
|
|
|
global $config;
|
|
|
|
|
|
|
|
$get_image_path = get_parameter('get_image_path', 0);
|
|
|
|
|
|
|
|
/* skins image checks */
|
2013-05-20 18:35:49 +02:00
|
|
|
if ($get_image_path) {
|
2011-02-28 17:53:09 +01:00
|
|
|
$img_src = get_parameter("img_src");
|
|
|
|
$only_src = get_parameter("only_src", 0);
|
2013-05-20 18:35:49 +02:00
|
|
|
|
2011-04-27 15:43:31 +02:00
|
|
|
return html_print_image($img_src, false, '', $only_src);
|
2011-02-28 17:53:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|