You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
125 lines
4.4 KiB
125 lines
4.4 KiB
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
/**
|
|
* Responses to AJAX calls
|
|
*/
|
|
require_once '../global.inc.php';
|
|
|
|
$action = $_REQUEST['a'];
|
|
|
|
switch ($action) {
|
|
case 'get_user_sessions':
|
|
if (api_is_platform_admin()) {
|
|
$user_id = intval($_POST['user_id']);
|
|
$list_sessions = SessionManager::get_sessions_by_user($user_id, true);
|
|
if (!empty($list_sessions)) {
|
|
foreach ($list_sessions as $session_item) {
|
|
echo $session_item['session_name'] . '<br />';
|
|
}
|
|
} else {
|
|
echo get_lang('NoSessionsForThisUser');
|
|
}
|
|
unset($list_sessions);
|
|
}
|
|
break;
|
|
case 'search_session':
|
|
if (api_is_platform_admin()) {
|
|
$results = SessionManager::get_sessions_list(
|
|
array('s.name' => array('operator' => 'LIKE', 'value' => "%".$_REQUEST['q']."%"))
|
|
);
|
|
$results2 = array();
|
|
if (!empty($results)) {
|
|
foreach ($results as $item) {
|
|
$item2 = array();
|
|
foreach ($item as $id => $internal) {
|
|
if ($id == 'id') {
|
|
$item2[$id] = $internal;
|
|
}
|
|
if ($id == 'name') {
|
|
$item2['text'] = $internal;
|
|
}
|
|
}
|
|
$results2[] = $item2;
|
|
}
|
|
echo json_encode($results2);
|
|
} else {
|
|
echo json_encode(array());
|
|
}
|
|
}
|
|
break;
|
|
case 'search_session_all':
|
|
if (api_is_platform_admin()) {
|
|
$results = SessionManager::get_sessions_list(
|
|
array(
|
|
's.name' => array('operator' => 'like', 'value' => "%".$_REQUEST['q']."%"),
|
|
'c.id' => array('operator' => '=', 'value' => $_REQUEST['course_id'])
|
|
)
|
|
);
|
|
$results2 = array();
|
|
if (!empty($results)) {
|
|
foreach ($results as $item) {
|
|
$item2 = array();
|
|
foreach ($item as $id => $internal) {
|
|
if ($id == 'id') {
|
|
$item2[$id] = $internal;
|
|
}
|
|
if ($id == 'name') {
|
|
$item2['text'] = $internal;
|
|
}
|
|
}
|
|
$results2[] = $item2;
|
|
}
|
|
$results2[] = array('T', 'text' => 'TODOS', 'id' => 'T');
|
|
echo json_encode($results2);
|
|
} else {
|
|
echo json_encode(array(array('T', 'text' => 'TODOS', 'id' => 'T')));
|
|
}
|
|
}
|
|
break;
|
|
case 'search_session_by_course':
|
|
if (api_is_platform_admin()) {
|
|
$results = SessionManager::get_sessions_list(
|
|
array(
|
|
's.name' => array('operator' => 'like', 'value' => "%".$_REQUEST['q']."%"),
|
|
'c.id' => array('operator' => '=', 'value' => $_REQUEST['course_id'])
|
|
)
|
|
);
|
|
$results2 = array();
|
|
if (!empty($results)) {
|
|
foreach ($results as $item) {
|
|
$item2 = array();
|
|
foreach ($item as $id => $internal) {
|
|
if ($id == 'id') {
|
|
$item2[$id] = $internal;
|
|
}
|
|
if ($id == 'name') {
|
|
$item2['text'] = $internal;
|
|
}
|
|
}
|
|
$results2[] = $item2;
|
|
}
|
|
$results2[] = array('T', 'text' => 'TODOS', 'id' => 'T');
|
|
echo json_encode($results2);
|
|
} else {
|
|
echo json_encode(array(array('T', 'text' => 'TODOS', 'id' => 'T')));
|
|
}
|
|
}
|
|
break;
|
|
case 'get_description':
|
|
$sessionId = intval($_GET['session']);
|
|
|
|
$sessionInfo = api_get_session_info($sessionId);
|
|
?>
|
|
<h2><?php echo $sessionInfo['name'] ?></h2><br>
|
|
<div class="home-course-intro">
|
|
<div class="page-course">
|
|
<div class="page-course-intro">
|
|
<p><?php echo $sessionInfo['show_description'] == 1 ? $sessionInfo['description'] : get_lang('None') ?></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
default:
|
|
echo '';
|
|
}
|
|
exit;
|
|
|