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.
		
		
		
		
		
			
		
			
				
					
					
						
							676 lines
						
					
					
						
							22 KiB
						
					
					
				
			
		
		
	
	
							676 lines
						
					
					
						
							22 KiB
						
					
					
				<?php
 | 
						|
 | 
						|
/* For licensing terms, see /license.txt */
 | 
						|
 | 
						|
use ChamiloSession as Session;
 | 
						|
use Chamilo\CoreBundle\Component\Utils\ActionIcon;
 | 
						|
use Chamilo\CoreBundle\Component\Utils\ObjectIcon;
 | 
						|
 | 
						|
/**
 | 
						|
 * @author Julio Montoya <gugli100@gmail.com>  Beeznest
 | 
						|
 */
 | 
						|
$cidReset = true;
 | 
						|
require_once __DIR__.'/../inc/global.inc.php';
 | 
						|
 | 
						|
$session_id = isset($_GET['session_id']) ? (int) $_GET['session_id'] : 0;
 | 
						|
 | 
						|
if (empty($session_id)) {
 | 
						|
    api_not_allowed(true);
 | 
						|
}
 | 
						|
 | 
						|
$sessionField = new ExtraFieldValue('session');
 | 
						|
$valueAllowVisitors = $sessionField->get_values_by_handler_and_field_variable(
 | 
						|
    $session_id,
 | 
						|
    'allow_visitors'
 | 
						|
);
 | 
						|
$allowVisitors = false != $valueAllowVisitors;
 | 
						|
 | 
						|
if (!$allowVisitors) {
 | 
						|
    // Only users who are logged in can proceed.
 | 
						|
    api_block_anonymous_users();
 | 
						|
}
 | 
						|
 | 
						|
$this_section = SECTION_COURSES;
 | 
						|
$htmlHeadXtra[] = api_get_jqgrid_js();
 | 
						|
$course_id = isset($_GET['course_id']) ? (int) $_GET['course_id'] : null;
 | 
						|
Session::write('id_session', $session_id);
 | 
						|
 | 
						|
// Clear the exercise session just in case
 | 
						|
Session::erase('objExercise');
 | 
						|
Session::erase('duration_time_previous');
 | 
						|
Session::erase('duration_time');
 | 
						|
 | 
						|
$user = api_get_user_entity();
 | 
						|
$session = api_get_session_entity($session_id);
 | 
						|
$session_list = SessionManager::get_sessions_by_general_coach(api_get_user_id());
 | 
						|
$courseList = SessionManager::get_course_list_by_session_id($session_id);
 | 
						|
 | 
						|
$user_course_list = [];
 | 
						|
$exerciseListPerCourse = [];
 | 
						|
 | 
						|
foreach ($courseList as $course) {
 | 
						|
    $status = SessionManager::get_user_status_in_course_session(
 | 
						|
        $user->getId(),
 | 
						|
        $course['real_id'],
 | 
						|
        $session_id
 | 
						|
    );
 | 
						|
    if (false !== $status || api_is_platform_admin() || $session->hasUserAsGeneralCoach($user)) {
 | 
						|
        $user_course_list[] = $course['real_id'];
 | 
						|
    }
 | 
						|
 | 
						|
    $exerciseList = ExerciseLib::get_all_exercises_for_course_id(
 | 
						|
        $course,
 | 
						|
        $session_id,
 | 
						|
        $course['real_id'],
 | 
						|
        true
 | 
						|
    );
 | 
						|
 | 
						|
    $exerciseListNew = [];
 | 
						|
    if (!empty($exerciseList)) {
 | 
						|
        // Exercises
 | 
						|
        foreach ($exerciseList as $exerciseInfo) {
 | 
						|
            // @todo check visibility
 | 
						|
            /*$exerciseId = $exerciseInfo['id'];
 | 
						|
            $visibility = api_get_item_visibility(
 | 
						|
                $course,
 | 
						|
                TOOL_QUIZ,
 | 
						|
                $exerciseId,
 | 
						|
                $session_id
 | 
						|
            );
 | 
						|
            if (0 == $visibility) {
 | 
						|
                continue;
 | 
						|
            }*/
 | 
						|
            $exerciseListNew[] = $exerciseInfo;
 | 
						|
        }
 | 
						|
    }
 | 
						|
    $exerciseListPerCourse[$course['real_id']] = $exerciseListNew;
 | 
						|
}
 | 
						|
 | 
						|
if (empty($user_course_list)) {
 | 
						|
    api_not_allowed(true);
 | 
						|
}
 | 
						|
 | 
						|
$my_session_list = [];
 | 
						|
$final_array = [];
 | 
						|
$new_course_list = [];
 | 
						|
if (!empty($courseList)) {
 | 
						|
    foreach ($courseList as $course_data) {
 | 
						|
        if (api_is_platform_admin()) {
 | 
						|
            $course_data['title'] = Display::url(
 | 
						|
                $course_data['title'],
 | 
						|
                api_get_course_url($course_data['real_id'], $session_id)
 | 
						|
            );
 | 
						|
        } else {
 | 
						|
            if (in_array($course_data['real_id'], $user_course_list) || api_is_anonymous()) {
 | 
						|
                $course_data['title'] = Display::url(
 | 
						|
                    $course_data['title'],
 | 
						|
                    api_get_course_url($course_data['real_id'], $session_id)
 | 
						|
                );
 | 
						|
            } else {
 | 
						|
                continue;
 | 
						|
            }
 | 
						|
        }
 | 
						|
 | 
						|
        $list = new LearnpathList(
 | 
						|
            api_get_user_id(),
 | 
						|
            api_get_course_info($course_data['code']),
 | 
						|
            $session_id,
 | 
						|
            'lp.publishedOn ASC',
 | 
						|
            true,
 | 
						|
            null,
 | 
						|
            true
 | 
						|
        );
 | 
						|
 | 
						|
        $lp_list = $list->get_flat_list();
 | 
						|
        $lp_count = 0;
 | 
						|
 | 
						|
        if (!empty($lp_list)) {
 | 
						|
            foreach ($lp_list as $valLp) {
 | 
						|
                if ($valLp['lp_visibility']) {
 | 
						|
                    $lp_count++;
 | 
						|
                }
 | 
						|
            }
 | 
						|
        }
 | 
						|
 | 
						|
        $course_info = api_get_course_info($course_data['code']);
 | 
						|
        $exerciseCount = count($exerciseListPerCourse[$course_info['real_id']]);
 | 
						|
        $max_mutation_date = '';
 | 
						|
        $last_date = Tracking::get_last_connection_date_on_the_course(
 | 
						|
            api_get_user_id(),
 | 
						|
            $course_info,
 | 
						|
            $session_id,
 | 
						|
            false
 | 
						|
        );
 | 
						|
 | 
						|
        $icons = '';
 | 
						|
        foreach ($lp_list as $item) {
 | 
						|
            if (empty($item['modified_on'])) {
 | 
						|
                $lp_date_original = $item['created_on'];
 | 
						|
                $image = ObjectIcon::STAR_EMPTY;
 | 
						|
                $label = get_lang('Course added');
 | 
						|
            } else {
 | 
						|
                $lp_date_original = $item['modified_on'];
 | 
						|
                $image = ObjectIcon::STAR;
 | 
						|
                $label = get_lang('Learning path updated');
 | 
						|
            }
 | 
						|
 | 
						|
            $mutation_date = api_strtotime($item['published_on']) > api_strtotime($lp_date_original) ? $item['published_on'] : $lp_date_original;
 | 
						|
 | 
						|
            if (api_strtotime($mutation_date) > api_strtotime($max_mutation_date)) {
 | 
						|
                $max_mutation_date = $mutation_date;
 | 
						|
            }
 | 
						|
 | 
						|
            if (strtotime($last_date) < strtotime($lp_date_original)) {
 | 
						|
                if (empty($icons)) {
 | 
						|
                    $icons .= ' '.Display::getMdiIcon(
 | 
						|
                        $image,
 | 
						|
                        'ch-tool-icon',
 | 
						|
                        null,
 | 
						|
                        ICON_SIZE_SMALL,
 | 
						|
                        get_lang('Since your latest visit').': '.$label.' - '.$lp_date_original
 | 
						|
                    ).' ';
 | 
						|
                }
 | 
						|
            }
 | 
						|
        }
 | 
						|
 | 
						|
        $new_course_list[] = [
 | 
						|
            'title' => $course_data['title'].$icons,
 | 
						|
            //  'recent_lps' => $icons,
 | 
						|
            //'max_mutation_date' => substr(api_get_local_time($max_mutation_date),0,10),
 | 
						|
            'exercise_count' => $exerciseCount,
 | 
						|
            'lp_count' => $lp_count,
 | 
						|
        ];
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
//If session is not active we stop de script
 | 
						|
if (false == api_is_coach_of_course_in_session($session_id)) {
 | 
						|
    //If session is not active we stop de script
 | 
						|
    if (!api_is_allowed_to_session_edit()) {
 | 
						|
        api_not_allowed(true);
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
$entityManager = Database::getManager();
 | 
						|
$sessionTitleLink = api_get_setting('course.courses_list_session_title_link');
 | 
						|
 | 
						|
if (2 == $sessionTitleLink && 1 === $session->getNbrCourses()) {
 | 
						|
    $sessionCourses = $session->getCourses();
 | 
						|
    $sessionCourse = $sessionCourses[0]->getCourse();
 | 
						|
    $url = api_get_course_url($sessionCourse->getId(), $session->getId());
 | 
						|
 | 
						|
    header('Location: '.$url);
 | 
						|
    exit;
 | 
						|
}
 | 
						|
 | 
						|
Display::display_header(get_lang('Session'));
 | 
						|
 | 
						|
$session_select = [];
 | 
						|
foreach ($session_list as $item) {
 | 
						|
    $session_select[$item['id']] = $item['name'];
 | 
						|
}
 | 
						|
 | 
						|
// Session list form
 | 
						|
if (count($session_select) > 1) {
 | 
						|
    $form = new FormValidator(
 | 
						|
        'exercise_admin',
 | 
						|
        'get',
 | 
						|
        api_get_self().'?session_id='.$session_id
 | 
						|
    );
 | 
						|
    $form->addSelect(
 | 
						|
        'session_id',
 | 
						|
        get_lang('Session list'),
 | 
						|
        $session_select,
 | 
						|
        ['onchange' => 'javascript:change_session()']
 | 
						|
    );
 | 
						|
    $defaults['session_id'] = $session_id;
 | 
						|
    $form->setDefaults($defaults);
 | 
						|
    $form->display();
 | 
						|
}
 | 
						|
 | 
						|
if (empty($session_id)) {
 | 
						|
    $user_list = UserManager::get_user_list();
 | 
						|
} else {
 | 
						|
    $user_list = SessionManager::get_users_by_session($session_id);
 | 
						|
}
 | 
						|
 | 
						|
//Final data to be show
 | 
						|
$my_real_array = $new_exercises = [];
 | 
						|
$now = time();
 | 
						|
 | 
						|
if (!empty($courseList)) {
 | 
						|
    foreach ($courseList as $courseInfo) {
 | 
						|
        $courseCode = $courseInfo['code'];
 | 
						|
        $courseId = $courseInfo['real_id'];
 | 
						|
 | 
						|
        $isSubscribed = CourseManager::is_user_subscribed_in_course(
 | 
						|
            api_get_user_id(),
 | 
						|
            $courseCode,
 | 
						|
            true,
 | 
						|
            $session_id
 | 
						|
        );
 | 
						|
 | 
						|
        $exerciseList = $exerciseListPerCourse[$courseId];
 | 
						|
 | 
						|
        if (!empty($exerciseList)) {
 | 
						|
            // Exercises
 | 
						|
            foreach ($exerciseList as $exerciseInfo) {
 | 
						|
                if ('0000-00-00 00:00:00' === $exerciseInfo['start_time']) {
 | 
						|
                    $start_date = '-';
 | 
						|
                } else {
 | 
						|
                    $start_date = $exerciseInfo['start_time'];
 | 
						|
                }
 | 
						|
 | 
						|
                $exerciseId = $exerciseInfo['id'];
 | 
						|
 | 
						|
                $best_score_data = ExerciseLib::get_best_attempt_in_course(
 | 
						|
                    $exerciseId,
 | 
						|
                    $courseInfo['real_id'],
 | 
						|
                    $session_id
 | 
						|
                );
 | 
						|
 | 
						|
                $best_score = '';
 | 
						|
                if (!empty($best_score_data)) {
 | 
						|
                    $best_score = ExerciseLib::show_score(
 | 
						|
                        $best_score_data['score'],
 | 
						|
                        $best_score_data['max_score']
 | 
						|
                    );
 | 
						|
                }
 | 
						|
 | 
						|
                $exerciseResultInfo = Event::getExerciseResultsByUser(
 | 
						|
                    $user->getId(),
 | 
						|
                    $exerciseId,
 | 
						|
                    $courseId,
 | 
						|
                    $session_id
 | 
						|
                );
 | 
						|
 | 
						|
                if (empty($exerciseResultInfo)) {
 | 
						|
                    // We check the date validation of the exercise if the user can make it
 | 
						|
                    if ('0000-00-00 00:00:00' !== $exerciseInfo['start_time']) {
 | 
						|
                        $allowed_time = api_strtotime($exerciseInfo['start_time'], 'UTC');
 | 
						|
                        if ($now < $allowed_time) {
 | 
						|
                            continue;
 | 
						|
                        }
 | 
						|
                    }
 | 
						|
 | 
						|
                    $name = Display::url(
 | 
						|
                        $exerciseInfo['title'],
 | 
						|
                        api_get_path(WEB_CODE_PATH)."exercise/overview.php?cid=$courseId&exerciseId={$exerciseId}&sid=$session_id",
 | 
						|
                        ['target' => SESSION_LINK_TARGET]
 | 
						|
                    );
 | 
						|
 | 
						|
                    $new_exercises[] = [
 | 
						|
                        'status' => Display::getMdiIcon(
 | 
						|
                            ObjectIcon::STAR_EMPTY,
 | 
						|
                            'ch-tool-icon',
 | 
						|
                            null,
 | 
						|
                            ICON_SIZE_SMALL,
 | 
						|
                            get_lang('New')
 | 
						|
                        ),
 | 
						|
                        'date' => $exerciseInfo['start_time'],
 | 
						|
                        'course' => $courseInfo['title'],
 | 
						|
                        'exercise' => $name,
 | 
						|
                        'attempt' => '-',
 | 
						|
                        'result' => '-',
 | 
						|
                        'best_result' => '-',
 | 
						|
                        'position' => '-',
 | 
						|
                    ];
 | 
						|
                    continue;
 | 
						|
                }
 | 
						|
 | 
						|
                // Exercise results
 | 
						|
                $counter = 1;
 | 
						|
                foreach ($exerciseResultInfo as $result) {
 | 
						|
                    $platform_score = ExerciseLib::show_score(
 | 
						|
                        $result['score'],
 | 
						|
                        $result['max_score']
 | 
						|
                    );
 | 
						|
                    $my_score = 0;
 | 
						|
                    if (!empty($result['max_score']) &&
 | 
						|
                        0 != intval($result['max_score'])
 | 
						|
                    ) {
 | 
						|
                        $my_score = $result['score'] / $result['max_score'];
 | 
						|
                    }
 | 
						|
                    $position = ExerciseLib::get_exercise_result_ranking(
 | 
						|
                        $my_score,
 | 
						|
                        $result['exe_id'],
 | 
						|
                        $exerciseId,
 | 
						|
                        $courseCode,
 | 
						|
                        $session_id,
 | 
						|
                        $user_list
 | 
						|
                    );
 | 
						|
 | 
						|
                    $name = Display::url(
 | 
						|
                        $exerciseInfo['title'],
 | 
						|
                        api_get_path(WEB_CODE_PATH)."exercise/result.php?cid=$courseId&id={$result['exe_id']}&sid=$session_id&show_headers=1",
 | 
						|
                        ['target' => SESSION_LINK_TARGET, 'class' => 'exercise-result-link']
 | 
						|
                    );
 | 
						|
 | 
						|
                    $my_real_array[] = [
 | 
						|
                        'status' => Display::getMdiIcon(
 | 
						|
                            ObjectIcon::TEST,
 | 
						|
                            'ch-tool-icon',
 | 
						|
                            null,
 | 
						|
                            ICON_SIZE_SMALL,
 | 
						|
                            get_lang('Attempted')
 | 
						|
                        ),
 | 
						|
                        'date' => $start_date,
 | 
						|
                        'course' => $courseInfo['title'],
 | 
						|
                        'exercise' => $name,
 | 
						|
                        'attempt' => $counter,
 | 
						|
                        'result' => $platform_score,
 | 
						|
                        'best_result' => $best_score,
 | 
						|
                        'position' => $position,
 | 
						|
                    ];
 | 
						|
                    $counter++;
 | 
						|
                }
 | 
						|
            }
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
$my_real_array = msort($my_real_array, 'date', 'asc');
 | 
						|
 | 
						|
if (!empty($new_exercises)) {
 | 
						|
    $my_real_array = array_merge($new_exercises, $my_real_array);
 | 
						|
}
 | 
						|
 | 
						|
if ($session->getDuration() > 0) {
 | 
						|
    $dates = sprintf(get_lang("%s days"), $session->getDuration());
 | 
						|
} else {
 | 
						|
    $dates = SessionManager::parseSessionDates($session)['access'];
 | 
						|
}
 | 
						|
 | 
						|
$editLink = '';
 | 
						|
if (api_is_platform_admin()) {
 | 
						|
    $editLink = ' '.Display::url(
 | 
						|
        Display::getMdiIcon(ActionIcon::EDIT, 'ch-tool-icon', null, ICON_SIZE_SMALL, get_lang('Edit')),
 | 
						|
        api_get_path(WEB_CODE_PATH).'session/session_edit.php?page=resume_session.php&id='.$session_id
 | 
						|
    );
 | 
						|
}
 | 
						|
 | 
						|
echo Display::tag('h1', $session->getName().$editLink);
 | 
						|
echo Display::tag('i', $dates);
 | 
						|
$allow = 'true' === api_get_setting('show_session_description');
 | 
						|
 | 
						|
if ($session->getShowDescription() && $allow) {
 | 
						|
    ?>
 | 
						|
    <div class="home-course-intro">
 | 
						|
        <div class="page-course">
 | 
						|
            <div class="page-course-intro">
 | 
						|
                <p><?php echo $session->getDescription(); ?></p>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
<?php
 | 
						|
}
 | 
						|
 | 
						|
// All Learnpaths grid settings (First tab, first subtab)
 | 
						|
$columns_courses = [
 | 
						|
    get_lang('Title'),
 | 
						|
    get_lang('NumberOfPublishedTests'),
 | 
						|
    get_lang('NumberOfPublishedLps'),
 | 
						|
];
 | 
						|
$column_model_courses = [
 | 
						|
    ['name' => 'title', 'index' => 'title', 'width' => '400px', 'align' => 'left', 'sortable' => 'true'],
 | 
						|
    //array('name'=>'recent_lps',         'index'=>'recent_lps',          'width'=>'10px',  'align'=>'left',  'sortable'=>'false'),
 | 
						|
//    array('name'=>'max_mutation_date',  'index'=>'max_mutation_date',   'width'=>'120px',  'align'=>'left',  'sortable'=>'true'),
 | 
						|
    ['name' => 'exercise_count', 'index' => 'exercise_count', 'width' => '180px', 'align' => 'left', 'sortable' => 'true'],
 | 
						|
    ['name' => 'lp_count', 'index' => 'lp_count', 'width' => '180px', 'align' => 'left', 'sortable' => 'true'],
 | 
						|
];
 | 
						|
 | 
						|
$extra_params_courses['height'] = '100%';
 | 
						|
$extra_params_courses['autowidth'] = 'true'; //use the width of the parent
 | 
						|
 | 
						|
$url = api_get_path(WEB_AJAX_PATH).'course_home.ajax.php?a=session_courses_lp_default&session_id='.$session_id.'&course_id='.$course_id;
 | 
						|
$columns = [
 | 
						|
    get_lang('Publication date'),
 | 
						|
    get_lang('Course'),
 | 
						|
    get_lang('Learning paths'),
 | 
						|
];
 | 
						|
 | 
						|
$column_model = [
 | 
						|
    ['name' => 'date', 'index' => 'date', 'width' => '120', 'align' => 'left', 'sortable' => 'true'],
 | 
						|
    ['name' => 'course', 'index' => 'course', 'width' => '300', 'align' => 'left', 'sortable' => 'true', 'wrap_cell' => 'true'],
 | 
						|
    ['name' => 'lp', 'index' => 'lp', 'width' => '440', 'align' => 'left', 'sortable' => 'true'],
 | 
						|
];
 | 
						|
 | 
						|
$extra_params = [];
 | 
						|
$extra_params['sortname'] = 'date';
 | 
						|
$extra_params['height'] = '100%';
 | 
						|
$extra_params['autowidth'] = 'true'; //use the width of the parent
 | 
						|
 | 
						|
//Per course grid settings
 | 
						|
$url_by_course = api_get_path(WEB_AJAX_PATH).'course_home.ajax.php?a=session_courses_lp_by_course&session_id='.$session_id.'&course_id='.$course_id;
 | 
						|
$extra_params_course = [];
 | 
						|
$extra_params_course['grouping'] = 'true';
 | 
						|
$extra_params_course['groupingView'] = [
 | 
						|
    'groupCollapse' => false,
 | 
						|
    'groupField' => ['course'],
 | 
						|
    'groupColumnShow' => ['false'],
 | 
						|
    'groupText' => ['<b>'.get_lang('Course').' {0}</b>'],
 | 
						|
];
 | 
						|
$extra_params_course['autowidth'] = 'true'; //use the width of the parent
 | 
						|
$extra_params_course['height'] = "100%";
 | 
						|
 | 
						|
//Per Week grid
 | 
						|
$url_week = api_get_path(WEB_AJAX_PATH).'course_home.ajax.php?a=session_courses_lp_by_week&session_id='.$session_id.'&course_id='.$course_id;
 | 
						|
$column_week = [
 | 
						|
    get_lang('Week'),
 | 
						|
    get_lang('Publication date'),
 | 
						|
    get_lang('Course'),
 | 
						|
    get_lang('Learning paths'),
 | 
						|
];
 | 
						|
 | 
						|
$column_week_model = [
 | 
						|
    ['name' => 'week', 'index' => 'week', 'width' => '40', 'align' => 'left', 'sortable' => 'false'],
 | 
						|
    ['name' => 'date', 'index' => 'date', 'width' => '120', 'align' => 'left', 'sortable' => 'false'],
 | 
						|
    ['name' => 'course', 'index' => 'course', 'width' => '300', 'align' => 'left', 'sortable' => 'true', 'wrap_cell' => 'true'],
 | 
						|
    ['name' => 'lp', 'index' => 'lp', 'width' => '440', 'align' => 'left', 'sortable' => 'true'],
 | 
						|
];
 | 
						|
 | 
						|
$extra_params_week = [];
 | 
						|
$extra_params_week['grouping'] = 'true';
 | 
						|
//For more details see http://www.trirand.com/jqgridwiki/doku.php?id=wiki:grouping
 | 
						|
$extra_params_week['groupingView'] = [
 | 
						|
    'groupCollapse' => false,
 | 
						|
    'groupDataSorted' => false,
 | 
						|
    'groupField' => ['week'],
 | 
						|
    'groupOrder' => ['desc'],
 | 
						|
    'groupColumnShow' => 'false',
 | 
						|
    'groupText' => ['<b>'.get_lang('Week').' {0}</b>'],
 | 
						|
];
 | 
						|
$extra_params_week['autowidth'] = 'true'; //use the width of the parent
 | 
						|
$extra_params_week['height'] = '100%';
 | 
						|
 | 
						|
// MyQCM grid
 | 
						|
if (!api_is_anonymous()) {
 | 
						|
    $column_exercise = [
 | 
						|
        get_lang('Status'),
 | 
						|
        get_lang('Publication date'),
 | 
						|
        get_lang('Course'),
 | 
						|
        get_lang('Test'),
 | 
						|
        get_lang('Attempts'),
 | 
						|
        get_lang('Result'),
 | 
						|
        get_lang('Best result in course'),
 | 
						|
        get_lang('Ranking'),
 | 
						|
    ];
 | 
						|
    $column_exercise_model = [
 | 
						|
        ['name' => 'status', 'index' => 'status', 'width' => '40', 'align' => 'left', 'sortable' => 'false'],
 | 
						|
        ['name' => 'date', 'index' => 'date', 'width' => '130', 'align' => 'left', 'sortable' => 'true'],
 | 
						|
        ['name' => 'course', 'index' => 'course', 'width' => '200', 'align' => 'left', 'sortable' => 'true', 'wrap_cell' => 'true'],
 | 
						|
        ['name' => 'exercise', 'index' => 'exercise', 'width' => '200', 'align' => 'left', 'sortable' => 'false'],
 | 
						|
        ['name' => 'attempt', 'index' => 'attempt', 'width' => '60', 'align' => 'center', 'sortable' => 'true'],
 | 
						|
        ['name' => 'result', 'index' => 'result', 'width' => '120', 'align' => 'center', 'sortable' => 'true'],
 | 
						|
        ['name' => 'best_result', 'index' => 'best_result', 'width' => '140', 'align' => 'center', 'sortable' => 'true'],
 | 
						|
        ['name' => 'position', 'index' => 'position', 'width' => '55', 'align' => 'center', 'sortable' => 'true'],
 | 
						|
    ];
 | 
						|
    $extra_params_exercise['height'] = '100%';
 | 
						|
    $extra_params_exercise['autowidth'] = 'true';
 | 
						|
    //$extra_params_exercise['sortname'] = 'status';
 | 
						|
    //$extra_params_exercise['sortorder'] = 'desc';
 | 
						|
    //$extra_params_exercise['grouping'] = 'true';
 | 
						|
    //$extra_params_exercise['groupingView'] = array('groupField'=>array('course'),'groupColumnShow'=>'false','groupText' => array('<b>'.get_lang('Course').' {0}</b>'));
 | 
						|
    //$extra_params_exercise['groupingView'] = array('groupField'=>array('course'),'groupColumnShow'=>'false','groupText' => array('<b>'.get_lang('Course').' {0} - {1} Item(s)</b>'));
 | 
						|
}
 | 
						|
?>
 | 
						|
<br />
 | 
						|
<script>
 | 
						|
function change_session() {
 | 
						|
    document.exercise_admin.submit();
 | 
						|
}
 | 
						|
 | 
						|
$(function() {
 | 
						|
    //js used when generating images on the fly see function Tracking::show_course_detail()
 | 
						|
    //$(".dialog").dialog("destroy");
 | 
						|
    $(".dialog").dialog({
 | 
						|
        autoOpen: false,
 | 
						|
        show: "blind",
 | 
						|
        resizable: false,
 | 
						|
        height:300,
 | 
						|
        width:550,
 | 
						|
        modal: true
 | 
						|
     });
 | 
						|
 | 
						|
    $(".opener").click(function() {
 | 
						|
        var my_id = $(this).attr('id');
 | 
						|
        var big_image = '#main_graph_' + my_id;
 | 
						|
        $( big_image ).dialog("open");
 | 
						|
        return false;
 | 
						|
    });
 | 
						|
 | 
						|
    // Redirect to tab
 | 
						|
    var url = document.location.toString();
 | 
						|
    if (url.match('#')) {
 | 
						|
        var tabLink = url.split('#')[1];
 | 
						|
        $('.nav-tabs a[href="#' + tabLink + '"]').tab('show');
 | 
						|
 | 
						|
        // Redirect to course part
 | 
						|
        var secondLink = url.split('#')[2];
 | 
						|
        if (secondLink) {
 | 
						|
            var aTag = $("a[href='#" + secondLink + "']");
 | 
						|
            $('html,body').animate({scrollTop: aTag.offset().top}, 'slow');
 | 
						|
        }
 | 
						|
    }
 | 
						|
<?php
 | 
						|
     //Displays js code to use a jqgrid
 | 
						|
    echo Display::grid_js(
 | 
						|
        'courses',
 | 
						|
        '',
 | 
						|
        $columns_courses,
 | 
						|
        $column_model_courses,
 | 
						|
        $extra_params_courses,
 | 
						|
        $new_course_list
 | 
						|
    );
 | 
						|
    echo Display::grid_js(
 | 
						|
        'list_default',
 | 
						|
        $url,
 | 
						|
        $columns,
 | 
						|
        $column_model,
 | 
						|
        $extra_params,
 | 
						|
        [],
 | 
						|
        ''
 | 
						|
    );
 | 
						|
    echo Display::grid_js(
 | 
						|
        'list_course',
 | 
						|
        $url_by_course,
 | 
						|
        $columns,
 | 
						|
        $column_model,
 | 
						|
        $extra_params_course,
 | 
						|
        [],
 | 
						|
        ''
 | 
						|
    );
 | 
						|
    echo Display::grid_js(
 | 
						|
        'list_week',
 | 
						|
        $url_week,
 | 
						|
        $column_week,
 | 
						|
        $column_week_model,
 | 
						|
        $extra_params_week,
 | 
						|
        [],
 | 
						|
        ''
 | 
						|
    );
 | 
						|
 | 
						|
    if (!api_is_anonymous()) {
 | 
						|
        echo Display::grid_js(
 | 
						|
            'exercises',
 | 
						|
            '',
 | 
						|
            $column_exercise,
 | 
						|
            $column_exercise_model,
 | 
						|
            $extra_params_exercise,
 | 
						|
            $my_real_array
 | 
						|
        );
 | 
						|
    }
 | 
						|
?>
 | 
						|
});
 | 
						|
</script>
 | 
						|
 | 
						|
<?php
 | 
						|
 | 
						|
$courseCode = isset($_GET['course']) ? $_GET['course'] : null;
 | 
						|
$reportingTab = '';
 | 
						|
if (!api_is_anonymous()) {
 | 
						|
    $reportingTab = Tracking::show_user_progress(
 | 
						|
        api_get_user_id(),
 | 
						|
        $session_id,
 | 
						|
        '#tabs-5',
 | 
						|
        false,
 | 
						|
        false
 | 
						|
    );
 | 
						|
    if (!empty($reportingTab)) {
 | 
						|
        $reportingTab .= '<br />';
 | 
						|
        $reportingTab .= Tracking::show_course_detail(
 | 
						|
            api_get_user_id(),
 | 
						|
            $course_id,
 | 
						|
            $session_id
 | 
						|
        );
 | 
						|
    }
 | 
						|
    if (empty($reportingTab)) {
 | 
						|
        $reportingTab = Display::return_message(get_lang('No data available'), 'warning');
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
// Main headers
 | 
						|
$headers = [
 | 
						|
    Display::getMdiIcon(ObjectIcon::STAR, 'ch-tool-icon', null, ICON_SIZE_SMALL),
 | 
						|
    get_lang('Courses'),
 | 
						|
    get_lang('Learning paths'),
 | 
						|
];
 | 
						|
 | 
						|
if (!api_is_anonymous()) {
 | 
						|
    $headers[] = get_lang('My MCQ');
 | 
						|
    $headers[] = get_lang('My statistics');
 | 
						|
}
 | 
						|
 | 
						|
$coursesTab = Display::grid_html('courses');
 | 
						|
$starTab = Display::grid_html('list_default');
 | 
						|
 | 
						|
$tabs = [
 | 
						|
    $starTab,
 | 
						|
    $coursesTab,
 | 
						|
    Display::grid_html('list_course'),
 | 
						|
    Display::grid_html('exercises'),
 | 
						|
    $reportingTab,
 | 
						|
];
 | 
						|
 | 
						|
$tabToHide = api_get_setting('session.hide_tab_list');
 | 
						|
 | 
						|
if (!empty($tabToHide)) {
 | 
						|
    foreach ($tabToHide as $columnId) {
 | 
						|
        unset($headers[$columnId]);
 | 
						|
        unset($tabs[$columnId]);
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
// Main headers data
 | 
						|
echo Display::tabs(
 | 
						|
    $headers,
 | 
						|
    $tabs
 | 
						|
);
 | 
						|
 | 
						|
// Deleting the objects
 | 
						|
Session::erase('_gid');
 | 
						|
Session::erase('oLP');
 | 
						|
Session::erase('lpobject');
 | 
						|
api_remove_in_gradebook();
 | 
						|
 | 
						|
Display::display_footer();
 | 
						|
 |