switch conference API

This commit is contained in:
james 2010-09-02 17:38:13 +00:00
parent c8ada5f7c2
commit 6963b7104b
3 changed files with 33 additions and 12 deletions

18
api.php
View File

@ -38,6 +38,23 @@ $ret=array();
switch($request[0]) {
case "conferences":
if($request[1]=="switch") {
if($_POST['conferences_id']) {
//this makes sure its valid and sets teh session
switchConference($_POST['conferences_id']);
//get rid of their current roles, and load their record for the new conference
if(is_array($_SESSION['roles'])) {
$_SESSION['roles']=array();
user_conference_load($_SESSION['accounts_id'],$_SESSION['conferences_id']);
}
$ret['status']="ok";
} else {
$ret['status']="error";
$ret['error']='conferences_id (integer) is required';
}
}
else {
$ret['status']="ok";
$ret['conferences']=array();
@ -47,6 +64,7 @@ switch($request[0]) {
$response[]=$r;
}
$ret['conferences']=$response;
}
break;
case "dates":

View File

@ -198,15 +198,18 @@ if(!$_SESSION['conferences_id']) {
}
}
//move the conference stuff before the configuration loading, so we can load the right configuration for the conference :)
if(isset($_GET['switchconference'])) {
//make sure its good
$cid=intval($_GET['switchconference']);
function switchConference($cid) {
$cid=intval($cid);
// echo "cid=$cid";
$q=mysql_query("SELECT * FROM conferences WHERE id='$cid' AND status='running'");
if($r=mysql_fetch_object($q)) {
$_SESSION['conferences_id']=$cid;
}
}
//move the conference stuff before the configuration loading, so we can load the right configuration for the conference :)
if(isset($_GET['switchconference'])) {
//make sure its good
switchConference($_GET['switchconference']);
unset($_SESSION['nav']);
}

View File

@ -38,7 +38,7 @@ function taskNavLevel(l1,l2,l3,l4) {
//show the secondary
$("#secondarymenu").show();
//and hide the tertiary
$("#tertiarymenu").hide();
// $("#tertiarymenu").hide();
});
}