Пример #1
0
    $the_main = new speakers\speakers_main();
    $tag = $the_main->id_tag_convert($_POST['speaker_id']);
    if (isset($tag)) {
        $result = $the_main->speaker_modals($tag, $_POST['size']);
        if (isset($result)) {
            echo $result;
        }
    }
}
// new sponsor
/*///////////// 
Display Sponsor Modal
///////////////*/
if (isset($_POST['action']) && $_POST['action'] == 'sponsor_modal') {
    $the_main = new sponsors\sponsors_main();
    $result = $the_main->sponsors_modal($_POST['sponsor_id'], $_POST['sponsor_mode']);
    if (isset($result)) {
        echo $result;
    }
}
/*///////////// 
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;
    }
}
/******************************