2011-06-10 12:19:04 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// Pandora FMS - http://pandorafms.com
|
|
|
|
// ==================================================
|
|
|
|
// Copyright (c) 2005-2011 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 Lesser General Public License
|
|
|
|
// as published by the Free Software Foundation; 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.
|
|
|
|
|
2013-07-16 Miguel de Dios <miguel.dedios@artica.es>
* include/functions.php,
include/javascript/jquery.pandora.controls.js: improved the
functions to pass the php vars to js, now it supports json.
* include/javascript/d3.v3.js: added this library for to make
beautiful things.
* include/functions_ui.php, include/graphs/fgraph.php,
include/javascript/pandora_events.js, include/javascript/pandora.js,
include/functions_treeview.php,
include/include_graph_dependencies.php,
include/functions_categories.php, include/db/postgresql.php,
include/db/oracle.php, include/db/mysql.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@8528 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-07-16 16:13:23 +02:00
|
|
|
/* Function that includes all graph dependencies */
|
|
|
|
function include_graphs_dependencies($home_url = '', $serialize_ttl = 1) {
|
|
|
|
global $config;
|
|
|
|
global $ttl;
|
|
|
|
global $homeurl;
|
|
|
|
|
|
|
|
$ttl = $serialize_ttl;
|
|
|
|
$homeurl = $home_url;
|
|
|
|
include_once($homeurl . 'include/functions_io.php');
|
|
|
|
include_once($homeurl . 'include/functions.php');
|
|
|
|
include_once($homeurl . 'include/functions_html.php');
|
2011-06-10 12:19:04 +02:00
|
|
|
|
2013-07-16 Miguel de Dios <miguel.dedios@artica.es>
* include/functions.php,
include/javascript/jquery.pandora.controls.js: improved the
functions to pass the php vars to js, now it supports json.
* include/javascript/d3.v3.js: added this library for to make
beautiful things.
* include/functions_ui.php, include/graphs/fgraph.php,
include/javascript/pandora_events.js, include/javascript/pandora.js,
include/functions_treeview.php,
include/include_graph_dependencies.php,
include/functions_categories.php, include/db/postgresql.php,
include/db/oracle.php, include/db/mysql.php: cleaned source code
style.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@8528 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2013-07-16 16:13:23 +02:00
|
|
|
if ($config['flash_charts'] && !defined('AJAX') && !get_parameter('static_graph',0)) {
|
|
|
|
include_once($homeurl . 'include/graphs/functions_flot.php');
|
|
|
|
}
|
|
|
|
include_once($homeurl . 'include/graphs/functions_gd.php');
|
|
|
|
include_once($homeurl . 'include/graphs/functions_utils.php');
|
|
|
|
}
|
|
|
|
|
2011-06-10 12:19:04 +02:00
|
|
|
?>
|