Esempio n. 1
0
}
// speaker order
/*///////////// 
Speaker mainpage bio edit
///////////////*/
if (isset($_POST['action']) && $_POST['action'] == 'edit_press_bio') {
    $the_main = new main\main();
    $the_main->press_bio();
}
// speaker order
/*///////////// 
Main page display
///////////////*/
if (isset($_POST['action']) && $_POST['action'] == 'press_mainpage' && isset($_POST['sId']) && isset($_POST['val'])) {
    $the_main = new main\main();
    $the_main->press_mainpage($_POST['sId'], $_POST['val']);
}
// delete sponsors permission
/**********************************
Agenda Frontend
**************************************/
/*///////////// 
Display Agenda Modal
///////////////*/
if (isset($_POST['action']) && $_POST['action'] == 'agenda_session_modal') {
    $the_main = new agenda\agenda_main();
    $result = $the_main->agenda_session_modal($_POST['category'], $_POST['day'], $_POST['agenda_id']);
    if (isset($result)) {
        echo $result;
    }
}