forked from science-ation/science-ation
switch conference API
This commit is contained in:
parent
c8ada5f7c2
commit
6963b7104b
18
api.php
18
api.php
@ -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":
|
||||
|
@ -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']);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user