jetzt werden auch raeume automatisch hinzugefuegt werden

git-svn-id: svn://svn.cccv.de/engel-system@53 29ba0400-6e00-0410-a75a-ca02368028f8
This commit is contained in:
cookie 2005-11-15 19:49:05 +00:00
parent 8648273e5e
commit 8b145da913
3 changed files with 27 additions and 19 deletions

View File

@ -10,9 +10,9 @@ include ("./inc/funktion_xml.php");
///////////
$ShowDataStrukture = 0;
$EnableRoomFunctions = 1;
$EnableRooms = 0;
$EnableRoomsDB = 0;
$EnableSchudleFunctions = 0;
$EnableRooms = 1;
$EnableRoomsDB = 1;
$EnableSchudleFunctions = 1;
$EnableSchudle = 1;
$EnableSchudleDB = 0;
@ -20,6 +20,10 @@ $EnableSchudleDB = 0;
/*##############################################################################################
erstellt Arrays der Reume
##############################################################################################*/
function CreateRoomArrays()
{
global $Room, $RoomID, $RoomName, $con;
$sql = "SELECT `RID`, `Name` FROM `Room` ".
"WHERE `Show`='Y'".
"ORDER BY `Number`, `Name`;";
@ -33,8 +37,8 @@ for ($i=0; $i<$rowcount; $i++)
$RoomID[ mysql_result($Erg, $i, "RID") ] = mysql_result($Erg, $i, "Name");
$RoomName[ mysql_result($Erg, $i, "Name") ] = mysql_result($Erg, $i, "RID");
}
}
CreateRoomArrays();
/*##############################################################################################
F I L E

View File

@ -36,7 +36,7 @@ $GlobalZeileProStunde = 4;
$ModemEnable = false;
//soll das xcal-file von penterbarf
$DataGetMeth="wget";
//$DataGetMeth="lynx";
//$DataGetMeth="wget";
$DataGetMeth="lynx";
?>

View File

@ -150,7 +150,11 @@ foreach($XMLmain->sub as $EventKey => $Event)
$SIDDB = mysql_result($Erg, 0, "SID");
$TimeDB = mysql_result($Erg, 0, "DateS");
$LenDB = mysql_result($Erg, 0, "Len");
if( isset($RoomID[mysql_result($Erg, 0, "RID")]))
$RIDDB = $RoomID[mysql_result($Erg, 0, "RID")];
else
$RIDDB = "RID". mysql_result($Erg, 0, "RID");
$ManDB = mysql_result($Erg, 0, "Man");
}
else