';
// the section (for the tabs)
$this_section = SECTION_TRACKING;
$csv_content = [];
$nameTools = get_lang('MySpace');
$allowToTrack = api_is_platform_admin(true, true);
if (!$allowToTrack) {
api_not_allowed(true);
}
if ($exportCSV) {
if ($display === 'user') {
MySpace::export_tracking_user_overview();
exit;
} elseif ($display === 'session') {
MySpace::export_tracking_session_overview();
exit;
} elseif ($display === 'course') {
MySpace::export_tracking_course_overview();
exit;
}
}
Display::display_header($nameTools);
echo '
';
echo MySpace::getTopMenu();
echo '
';
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 'accessoverview':
$courseId = isset($_GET['course_id']) ? (int) $_GET['course_id'] : 0;
$sessionId = isset($_GET['session_id']) ? (int) $_GET['session_id'] : 0;
$studentId = isset($_GET['student_id']) ? (int) $_GET['student_id'] : 0;
MySpace::displayTrackingAccessOverView($courseId, $sessionId, $studentId);
break;
}
Display::display_footer();