2006-03-27 05:37:27 +02:00
|
|
|
<?php
|
2008-07-30 20:39:40 +02:00
|
|
|
// Pandora FMS - the Flexible Monitoring System
|
|
|
|
// ============================================
|
|
|
|
// Copyright (c) 2008 Artica Soluciones Tecnológicas, http://www.artica.es
|
|
|
|
// Please see http://pandora.sourceforge.net for full contribution list
|
2007-03-02 18:56:07 +01:00
|
|
|
|
|
|
|
// 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 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.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2006-03-27 05:37:27 +02:00
|
|
|
|
2008-12-19 22:45:20 +01:00
|
|
|
$sql = 'SELECT link, name FROM tlink ORDER BY name';
|
2008-07-30 20:19:58 +02:00
|
|
|
$result = get_db_all_rows_sql ($sql);
|
2008-12-19 22:45:20 +01:00
|
|
|
if ($result !== false) {
|
|
|
|
echo '<div class="tit bg4">:: '.__('Links').' ::</div>';
|
2009-02-06 22:18:03 +01:00
|
|
|
echo '<div class="menu"><ul>';
|
2009-02-05 10:17:28 +01:00
|
|
|
foreach ($result as $link) {
|
2009-02-12 22:04:02 +01:00
|
|
|
echo '<li class="links"><a href="'.$link["link"].'" target="_blank">'.$link["name"].'</a></li>';
|
2008-07-14 20:00:54 +02:00
|
|
|
}
|
2008-12-19 22:45:20 +01:00
|
|
|
echo '</ul></div>';
|
2006-03-27 05:37:27 +02:00
|
|
|
}
|
2008-07-14 20:00:54 +02:00
|
|
|
?>
|