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.
139 lines
4.6 KiB
139 lines
4.6 KiB
<?php
|
|
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
$cidReset = true;
|
|
|
|
require_once __DIR__.'/../inc/global.inc.php';
|
|
|
|
api_block_anonymous_users();
|
|
|
|
$exportCSV = isset($_GET['export']) && 'csv' === $_GET['export'] ? true : false;
|
|
if (isset($_GET['export_csv']) && false == $exportCSV) {
|
|
// to export learningPath and company
|
|
$exportCSV = true;
|
|
}
|
|
$startDate = isset($_GET['startDate']) ? $_GET['startDate'] : null;
|
|
$endDate = isset($_GET['endDate']) ? $_GET['endDate'] : null;
|
|
$display = isset($_GET['display']) ? Security::remove_XSS($_GET['display']) : null;
|
|
if (isset($_POST['display']) && null == $display) {
|
|
$display = Security::remove_XSS($_POST['display']);
|
|
}
|
|
|
|
$htmlHeadXtra[] = api_get_jqgrid_js();
|
|
$htmlHeadXtra[] = '<script
|
|
src="'.api_get_path(WEB_PUBLIC_PATH).'assets/jquery.easy-pie-chart/dist/jquery.easypiechart.js"></script>
|
|
<script>
|
|
// show hide a student based on BT#17648
|
|
function showHideStudent(el){
|
|
if($("#"+el).hasClass("hidden")){
|
|
$("#"+el).removeClass("hidden");
|
|
$("#"+el+"_").find(".icon_add").addClass("hidden");
|
|
$("#"+el+"_").find(".icon_remove").removeClass("hidden");
|
|
}else{
|
|
$("#"+el).addClass("hidden")
|
|
$("#"+el+"_").find(".icon_add").removeClass("hidden");
|
|
$("#"+el+"_").find(".icon_remove").addClass("hidden");
|
|
}
|
|
}
|
|
function ShowMoreAuthor(el){
|
|
if($(".author_"+el).hasClass("hidden")){
|
|
$(".author_"+el).removeClass("hidden");
|
|
$(".icon_remove_author_"+el).removeClass("hidden");
|
|
$(".icon_add_author_"+el).addClass("hidden");
|
|
}else{
|
|
$(".author_"+el).addClass("hidden")
|
|
$(".icon_remove_author_"+el).addClass("hidden");
|
|
$(".icon_add_author_"+el).removeClass("hidden");
|
|
}
|
|
}
|
|
</script>';
|
|
// the section (for the tabs)
|
|
$this_section = SECTION_TRACKING;
|
|
|
|
$csv_content = [];
|
|
$nameTools = get_lang('Reporting');
|
|
$allowToTrack = api_is_platform_admin(true, true);
|
|
|
|
if (!$allowToTrack) {
|
|
api_not_allowed(true);
|
|
}
|
|
|
|
if ($exportCSV) {
|
|
if ('user' === $display) {
|
|
MySpace::export_tracking_user_overview();
|
|
exit;
|
|
} elseif ('session' === $display) {
|
|
MySpace::export_tracking_session_overview();
|
|
exit;
|
|
} elseif ('course' === $display) {
|
|
MySpace::export_tracking_course_overview();
|
|
exit;
|
|
} elseif ('company' === $display) {
|
|
MySpace::exportCompanyResumeCsv($startDate, $endDate);
|
|
exit;
|
|
} elseif ('learningPath' === $display) {
|
|
MySpace::displayResumeLP($startDate, $endDate, true);
|
|
exit;
|
|
} elseif ('learningPathByItem' === $display) {
|
|
MySpace::displayResumeLpByItem($startDate, $endDate, true);
|
|
exit;
|
|
}
|
|
}
|
|
|
|
Display::display_header($nameTools);
|
|
echo '<div class="actions">';
|
|
echo MySpace::getTopMenu();
|
|
echo '</div>';
|
|
echo MySpace::getAdminActions();
|
|
|
|
switch ($display) {
|
|
case 'coaches':
|
|
MySpace::display_tracking_coach_overview($exportCSV);
|
|
break;
|
|
case 'user':
|
|
MySpace::display_tracking_user_overview();
|
|
break;
|
|
case 'session':
|
|
MySpace::display_tracking_session_overview();
|
|
break;
|
|
case 'course':
|
|
MySpace::display_tracking_course_overview();
|
|
break;
|
|
case 'company':
|
|
MySpace::displayResumeCompany($startDate, $endDate);
|
|
break;
|
|
case 'learningPath':
|
|
MySpace::displayResumeLP($startDate, $endDate);
|
|
break;
|
|
case 'learningPathByItem':
|
|
MySpace::displayResumeLpByItem($startDate, $endDate);
|
|
break;
|
|
case 'accessoverview':
|
|
$courseId = isset($_GET['course_id']) ? (int) $_GET['course_id'] : 0;
|
|
if (0 == $courseId && $_POST['course_id']) {
|
|
$courseId = (int) $_POST['course_id'];
|
|
$_GET['course_id'] = $courseId;
|
|
}
|
|
$sessionId = isset($_GET['session_id']) ? (int) $_GET['session_id'] : 0;
|
|
if (0 == $sessionId && $_POST['session_id']) {
|
|
$sessionId = (int) $_POST['session_id'];
|
|
$_GET['session_id'] = $sessionId;
|
|
}
|
|
$studentId = isset($_GET['student_id']) ? (int) $_GET['student_id'] : 0;
|
|
if (0 == $studentId && $_POST['student_id']) {
|
|
$studentId = (int) $_POST['student_id'];
|
|
$_GET['student_id'] = $studentId;
|
|
}
|
|
$perPage = isset($_GET['tracking_access_overview_per_page']) ? $_GET['tracking_access_overview_per_page'] : 20;
|
|
|
|
$dates = isset($_GET['date']) ? $_GET['date'] : null;
|
|
if (null == $dates && $_POST['date']) {
|
|
$dates = $_POST['date'];
|
|
$_GET['date'] = $dates;
|
|
}
|
|
MySpace::displayTrackingAccessOverView($courseId, $sessionId, $studentId, $perPage, $dates);
|
|
break;
|
|
}
|
|
|
|
Display::display_footer();
|
|
|