<?php
/*******************************************************
** IntraMessenger - server **
** **
** Copyright: (C) 2006 - 2010 THeUDS **
** Web: http://www.theuds.com **
** http://www.intramessenger.net **
** Licence : GPL (GNU Public License) **
** http://opensource.org/licenses/gpl-license.php **
*******************************************************/
/*******************************************************
** This file is part of IntraMessenger-server **
** **
** IntraMessenger is a free software. **
** IntraMessenger is distributed in the hope that **
** it will be useful, but WITHOUT ANY WARRANTY. **
*******************************************************/
//
require ("../common/display_errors.inc.php");
//
if (isset($_GET['id_srv'])) $id_srv = intval($_GET['id_srv']); else $id_srv = 0;
if (isset($_GET['srv_name'])) $srv_name = $_GET['srv_name']; else $srv_name = "";
if (isset($_GET['lang'])) $lang = $_GET['lang']; else $lang = "";
//
define('INTRAMESSENGER',true);
require ("../common/styles/style.css.inc.php");
require ("../common/config/config.inc.php");
require ("lang.inc.php");
require ("../common/menu.inc.php"); // après config.inc.php !
//echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">';
echo "<html><head>";
echo "<title>[IM] " . $l_admin_servers_title . "</title>";
display_header();
//echo '<META http-equiv="refresh" content="120;url="> ';
echo "</head>";
echo "<body>";
//
display_menu();
//
echo "<font face=verdana size=2>";
if ( _SERVERS_STATUS != '' )
{
echo "<BR/>";
echo "<BR/>";
echo "<B>" . $srv_name . "</B>";
echo "<FORM METHOD='GET' name='formulaire' ACTION ='server_status_delete.php?'>";
echo "<INPUT class='mainoption' TYPE='submit' VALUE ='" . $l_admin_bt_delete . " ?' />";
echo "<INPUT TYPE='hidden' name='id_srv' value = '" . $id_srv . "' />";
echo "<INPUT TYPE='hidden' name='lang' value = '" . $lang . "' />";
echo "</FORM>";
}
else
{
echo "<BR/>";
echo $l_admin_servers_cannot . "<BR/>";
}
//
display_menu_footer();
//
echo "</body></html>";
?>