* 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, either version 3 of the License, or * (at your option) any later version. * * 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. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ /** * Custom Frontpage * @author f0o * @copyright 2014 f0o, LibreNMS * @license GPL * @package LibreNMS * @subpackage Frontpage */ if ($config['map']['engine'] == 'leaflet') { require_once 'includes/common/worldmap.inc.php'; echo implode('',$common_output); } else { if (isset($config['mapael']['default_map']) && is_file($config['html_dir'].'/js/'.$config['mapael']['default_map'])) { $default_map = $config['mapael']['default_map']; } else { $default_map = 'maps/world_countries.js'; } $map_tmp = preg_split("/\//",$default_map); $map_name = $map_tmp[count($map_tmp)-1]; $map_name = str_replace('.js','',$map_name); if (isset($config['mapael']['map_width']) && is_numeric($config['mapael']['map_width'])) { $map_width = $config['mapael']['map_width']; } else { $map_width = '800'; } if (isset($config['mapael']['default_zoom'])) { $default_zoom = $config['mapael']['default_zoom']; } else { $default_zoom = 0; } if (isset($config['mapael']['default_lat']) && isset($config['mapael']['default_lng'])) { $init_zoom = "init: { latitude: " . $config['mapael']['default_lat'] . ", longitude: " . $config['mapael']['default_lng'] . ", level: $default_zoom }\n"; } ?>
Alternative content for the map
'; include_once 'includes/front/boxes.inc.php'; echo '
'; include_once 'includes/common/device-summary-vert.inc.php'; echo implode('',$common_output); echo '
'; $device['device_id'] = '-1'; require_once 'includes/common/alerts.inc.php'; echo implode('',$common_output); unset($device['device_id']); echo '
'; //From default.php - This code is not part of above license. if ($config['enable_syslog']) { $sql = "SELECT *, DATE_FORMAT(timestamp, '".$config['dateformat']['mysql']['compact']."') AS date from syslog ORDER BY seq DESC LIMIT 20"; $query = mysql_query($sql); echo('
 
Syslog entries
'); foreach (dbFetchRows($sql) as $entry) { $entry = array_merge($entry, device_by_id_cache($entry['device_id'])); unset($syslog_output); include("includes/print-syslog.inc.php"); echo $syslog_output; } echo("
"); echo("
"); echo("
"); echo("
"); echo("
"); } else { if ($_SESSION['userlevel'] == '10') { $query = "SELECT *,DATE_FORMAT(datetime, '".$config['dateformat']['mysql']['compact']."') as humandate FROM `eventlog` ORDER BY `datetime` DESC LIMIT 0,15"; } else { $query = "SELECT *,DATE_FORMAT(datetime, '".$config['dateformat']['mysql']['compact']."') as humandate FROM `eventlog` AS E, devices_perms AS P WHERE E.host = P.device_id AND P.user_id = " . $_SESSION['user_id'] . " ORDER BY `datetime` DESC LIMIT 0,15"; } $data = mysql_query($query); echo('
 
Eventlog entries
'); foreach (dbFetchRows($query) as $entry) { include 'includes/print-event.inc.php'; } echo("
"); echo("
"); echo("
"); echo("
"); echo("
"); } ?>