<?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['tri'])) $tri = $_GET['tri']; else $tri = "";
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_group_title . "</title>";
display_header();
//echo '<META http-equiv="refresh" content="120;url="> ';
echo "</head>";
echo "<body>";
//
display_menu();
//
echo "<font face=verdana size=2>";
echo "<BR/>";
if ( ( _SPECIAL_MODE_GROUP_COMMUNITY != '' ) xor ( _GROUP_FOR_SBX_AND_ADMIN_MSG != '') )
{
if ( _GROUP_FOR_SBX_AND_ADMIN_MSG != '')
{
echo "<B>" . $l_admin_options_group_for_sbx_and_admin_messages . "</B><BR/>";
echo "(" . $l_admin_options_group_for_admin_messages_2 . ")<BR/>";
echo "<BR/>";
}
//
//
echo "<TABLE cellspacing='1' cellpadding='1' class='forumline'>";
echo "<TR>";
echo "<TH align='center' COLSPAN='3' class='thHead'>";
echo "<font face=verdana size=3><b> " . $l_admin_group_title_2 . " </b></font>";
echo "</TH>";
echo "</TR>";
echo "<TR>";
echo "<TD align='center' COLSPAN='3' class='catHead'>";
echo "<font face=verdana size=3><b> " . $l_admin_group_creat_group . " </b></font>"; // -------------- Create group ----------------
echo "</TD>";
echo "</TR>";
echo "<TR>";
echo "<FORM METHOD='POST' ACTION='group_add.php?'>";
echo "<TD class='row1' align='left'>";
echo "<font face=verdana size=2> ";
echo $l_admin_group_col_group . " : <input type='text' name='group_name' maxlength='20' value='' size='15' class='post' />";
//echo "<BR/>";
echo "</TD>";
echo "<TD class='row1' COLSPAN='2' align='right'>";
//echo " ";
echo "<INPUT TYPE='submit' VALUE = '" . $l_admin_bt_add . "' class='liteoption' />";
echo "<input type='hidden' name='tri' value = '" . $tri . "' />";
echo "<INPUT TYPE='hidden' name='lang' value = '" . $lang . "' />";
echo "</TD></TR>";
echo "</FORM>";
//
//
echo "<TR>";
echo "<TD align='center' COLSPAN='3' class='row2'> </TD>";
echo "</TR>";
echo "<TR>";
//
echo "</TABLE>"; //
}
else
{
echo "<BR/>";
echo $l_admin_group_cannot_use_1 . "<BR/>";
echo "<BR/>";
echo $l_admin_group_cannot_use_2 . "<BR/>";
echo "<BR/>";
echo "<BR/>";
echo "<I>_GROUP_FOR_SBX_AND_ADMIN_MSG</I> : " . $l_admin_options_group_for_sbx_and_admin_messages;
echo "<BR/>";
echo $l_admin_options_group_for_admin_messages_2;
}
//
display_menu_footer();
//
echo "</body></html>";
?>