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.
		
		
		
		
		
			
		
			
				
					
					
						
							35 lines
						
					
					
						
							1.1 KiB
						
					
					
				
			
		
		
	
	
							35 lines
						
					
					
						
							1.1 KiB
						
					
					
				<?php
 | 
						|
/* For licensing terms, see /license.txt */
 | 
						|
require_once '../global.inc.php';
 | 
						|
 | 
						|
$action = $_GET['a'];
 | 
						|
 | 
						|
switch($action) {
 | 
						|
    case 'load_online_user':
 | 
						|
        if (isset($_SESSION['who_is_online_counter'])) {
 | 
						|
            $_SESSION['who_is_online_counter']++;
 | 
						|
        } else {
 | 
						|
            $_SESSION['who_is_online_counter'] = 2;
 | 
						|
        }
 | 
						|
        $images_to_show = 9;
 | 
						|
 | 
						|
        $page = intval($_REQUEST['online_page_nr']);
 | 
						|
        $max_page = ceil(who_is_online_count()/$images_to_show);
 | 
						|
        $page_rows = ($page-1)*9;
 | 
						|
 | 
						|
        if (!empty($max_page) && $page <= $max_page) {
 | 
						|
            if (isset($_GET['cidReq']) && strlen($_GET['cidReq']) > 0) {
 | 
						|
                $user_list = who_is_online_in_this_course($page_rows, $images_to_show, api_get_user_id(), api_get_setting('time_limit_whosonline'), $_GET['cidReq']);
 | 
						|
            } else {
 | 
						|
                $user_list = who_is_online($page_rows, $images_to_show);
 | 
						|
            }
 | 
						|
            if (!empty($user_list)) {
 | 
						|
                echo SocialManager::display_user_list($user_list, false);
 | 
						|
                exit;
 | 
						|
            }
 | 
						|
        }
 | 
						|
        echo 'end';
 | 
						|
        break;
 | 
						|
    default:
 | 
						|
        break;
 | 
						|
}
 | 
						|
 |