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.
		
		
		
		
		
			
		
			
				
					
					
						
							101 lines
						
					
					
						
							3.6 KiB
						
					
					
				
			
		
		
	
	
							101 lines
						
					
					
						
							3.6 KiB
						
					
					
				<?php
 | 
						|
/* For licensing terms, see /license.txt */
 | 
						|
/**
 | 
						|
 * Responses to AJAX calls
 | 
						|
 */
 | 
						|
 | 
						|
$language_file[] = 'admin';
 | 
						|
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 LIKE' => "%".$_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 LIKE' => "%".$_REQUEST['q']."%", 'c.id ='=>$_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 LIKE' => "%".$_REQUEST['q']."%", 'c.id ='=>$_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;
 | 
						|
    default:
 | 
						|
        echo '';
 | 
						|
}
 | 
						|
exit;
 | 
						|
 |