123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * Homepage for the MySpace directory
- * @package chamilo.reporting
- */
- /**
- * code
- */
- $language_file = array('registration', 'index', 'tracking', 'admin');
- // resetting the course id
- $cidReset = true;
- // including additional libraries
- require_once 'myspace.lib.php';
- // the section (for the tabs)
- $this_section = SECTION_TRACKING;
- ob_start();
- $export_csv = isset($_GET['export']) && $_GET['export'] == 'csv' ? true : false;
- $display = isset($_GET['display']) ? Security::remove_XSS($_GET['display']) : null;
- $csv_content = array();
- $nameTools = get_lang('MySpace');
- $user_id = api_get_user_id();
- $session_id = isset($_GET['session_id']) ? intval($_GET['session_id']) : 0;
- //$is_coach = api_is_coach($session_id); // This is used?
- $is_platform_admin = api_is_platform_admin();
- $is_drh = api_is_drh();
- $is_session_admin = api_is_session_admin();
- $count_sessions = 0;
- $count_courses = 0;
- $title = null;
- // access control
- api_block_anonymous_users();
- $htmlHeadXtra[] = api_get_jqgrid_js();
- if (!$export_csv) {
- Display :: display_header($nameTools);
- } else {
- if ($_GET['view'] == 'admin') {
- if($display == 'useroverview') {
- MySpace::export_tracking_user_overview();
- exit;
- } else if($display == 'sessionoverview') {
- MySpace::export_tracking_session_overview();
- exit;
- } else if($display == 'courseoverview') {
- MySpace::export_tracking_course_overview();
- exit;
- }
- }
- }
- // Database table definitions
- $tbl_user = Database :: get_main_table(TABLE_MAIN_USER);
- $tbl_sessions = Database :: get_main_table(TABLE_MAIN_SESSION);
- $tbl_session_course_user = Database :: get_main_table(TABLE_MAIN_SESSION_COURSE_USER);
- /* * FUNCTIONS */
- function count_coaches() {
- global $total_no_coaches;
- return $total_no_coaches;
- }
- function sort_users($a, $b) {
- return api_strcmp(trim(api_strtolower($a[$_SESSION['tracking_column']])), trim(api_strtolower($b[$_SESSION['tracking_column']])));
- }
- function rsort_users($a, $b) {
- return api_strcmp(trim(api_strtolower($b[$_SESSION['tracking_column']])), trim(api_strtolower($a[$_SESSION['tracking_column']])));
- }
- function count_sessions_coached() {
- global $count_sessions;
- return $count_sessions;
- }
- function sort_sessions($a, $b) {
- global $tracking_column;
- if ($a[$tracking_column] > $b[$tracking_column]) {
- return 1;
- } else {
- return -1;
- }
- }
- function rsort_sessions($a, $b) {
- global $tracking_column;
- if ($b[$tracking_column] > $a[$tracking_column]) {
- return 1;
- } else {
- return -1;
- }
- }
- /** MAIN CODE */
- if ($is_session_admin) {
- header('location:session.php');
- exit;
- }
- // Get views
- $views = array('admin', 'teacher', 'coach', 'drh');
- $view = 'teacher';
- if (isset($_GET['view']) && in_array($_GET['view'], $views)) {
- $view = $_GET['view'];
- }
- $menu_items = array();
- global $_configuration;
- if ($is_platform_admin) {
- if ($view == 'admin') {
- $title = get_lang('CoachList');
- $menu_items[] = Display::url(Display::return_icon('teacher.png', get_lang('TeacherInterface'), array(), 32), api_get_self().'?view=teacher');
- $menu_items[] = Display::url(Display::return_icon('star_na.png', get_lang('AdminInterface'), array(), 32), api_get_self().'?view=admin');
- $menu_items[] = Display::url(Display::return_icon('quiz.png', get_lang('ExamTracking'), array(), 32), api_get_path(WEB_CODE_PATH).'tracking/exams.php');
- $menu_items[] = Display::url(Display::return_icon('statistics.png', get_lang('CurrentCoursesReport'), array(), 32), api_get_path(WEB_CODE_PATH).'mySpace/current_courses.php');
- } else {
- $menu_items[] = Display::return_icon('teacher_na.png', get_lang('TeacherInterface'), array(), 32);
- $menu_items[] = Display::url(Display::return_icon('star.png', get_lang('AdminInterface'), array(), 32), api_get_self().'?view=admin');
- $menu_items[] = Display::url(Display::return_icon('quiz.png', get_lang('ExamTracking'), array(), 32), api_get_path(WEB_CODE_PATH).'tracking/exams.php');
- $menu_items[] = Display::url(Display::return_icon('statistics.png', get_lang('CurrentCoursesReport'), array(), 32), api_get_path(WEB_CODE_PATH).'mySpace/current_courses.php');
- }
- }
- if ($is_drh) {
- $view = 'drh';
- $menu_items[] = Display::return_icon('user_na.png', get_lang('Students'), array(), 32);
- $menu_items[] = Display::url(Display::return_icon('teacher.png', get_lang('Trainers'), array(), 32), 'teachers.php');
- $menu_items[] = Display::url(Display::return_icon('course.png', get_lang('Courses'), array(), 32), 'course.php');
- $menu_items[] = Display::url(Display::return_icon('session.png', get_lang('Sessions'), array(), 32), 'session.php');
- }
- echo '<div id="actions" class="actions">';
- echo '<span style="float:right">';
- if ($display == 'useroverview' || $display == 'sessionoverview' || $display == 'courseoverview') {
- echo '<a href="'.api_get_self().'?display='.$display.'&export=csv&view='.$view.'">';
- echo Display::return_icon("export_csv.png", get_lang('ExportAsCSV'),array(), 32);
- echo '</a>';
- }
- echo '<a href="javascript: void(0);" onclick="javascript: window.print()">'.Display::return_icon('printer.png', get_lang('Print'),'',ICON_SIZE_MEDIUM).'</a>';
- echo '</span>';
- if (!empty($session_id)) {
- echo '<a href="index.php">'.Display::return_icon('back.png', get_lang('Back'),'',ICON_SIZE_MEDIUM).'</a>';
- } else {
- echo Display::url(Display::return_icon('stats.png', get_lang('MyStats'),'',ICON_SIZE_MEDIUM),api_get_path(WEB_CODE_PATH)."auth/my_progress.php" );
- }
- // Actions menu
- $nb_menu_items = count($menu_items);
- if (empty($session_id)) {
- if ($nb_menu_items > 1) {
- foreach ($menu_items as $key => $item) {
- echo $item;
- }
- }
- }
- echo '</div>';
- $sessions = array();
- if (empty($session_id)) {
- // Getting courses followed by a coach (No session courses)
- $courses = CourseManager::get_course_list_as_coach($user_id, false);
- if (isset($courses[0])) {
- $courses = $courses[0];
- }
- //Getting students from courses and courses in sessions (To show the total students that the user follows)
- $students = CourseManager::get_user_list_from_courses_as_coach($user_id);
- // Sessions for the coach
- $sessions = SessionManager::get_sessions_coached_by_user($user_id);
- //If is drh
- if ($is_drh) {
- $students = array_keys(UserManager::get_users_followed_by_drh($user_id, STUDENT));
- $courses_of_the_platform = CourseManager :: get_courses_followed_by_drh($user_id);
- foreach ($courses_of_the_platform as $course) {
- $courses[$course['real_id']] = $course['real_id'];
- }
- $sessions = SessionManager::get_sessions_followed_by_drh($user_id);
- }
- //Courses for the user
- $count_courses = count($courses);
- //Sessions for the user
- $count_sessions = count($sessions);
- //Students
- $nb_students = count($students);
- $total_time_spent = 0;
- $total_courses = 0;
- $avg_total_progress = 0;
- $avg_results_to_exercises = 0;
- $nb_inactive_students = 0;
- $nb_posts = $nb_assignments = 0;
- if (!empty($students))
- foreach ($students as $student_id) {
- // inactive students
- $last_connection_date = Tracking :: get_last_connection_date($student_id, true, true);
- if ($last_connection_date !== false) {
- if (time() - (3600 * 24 * 7) > $last_connection_date) {
- $nb_inactive_students++;
- }
- } else {
- $nb_inactive_students++;
- }
- $total_time_spent += Tracking :: get_time_spent_on_the_platform($student_id);
- $total_courses += Tracking :: count_course_per_student($student_id);
- $avg_student_progress = 0;
- $avg_student_score = 0;
- $nb_courses_student = 0;
- foreach ($courses as $courseId) {
- if (CourseManager :: is_user_subscribed_in_course($student_id, $courseId, true)) {
- $nb_courses_student++;
- $nb_posts += Tracking :: count_student_messages($student_id, $courseId);
- $nb_assignments += Tracking :: count_student_assignments($student_id, $courseId);
- $avg_student_progress += Tracking :: get_avg_student_progress($student_id, $courseId);
- $myavg_temp = Tracking :: get_avg_student_score($student_id, $courseId);
- if (is_numeric($myavg_temp))
- $avg_student_score += $myavg_temp;
- if ($nb_posts !== null && $nb_assignments !== null && $avg_student_progress !== null && $avg_student_score !== null) {
- //if one of these scores is null, it means that we had a problem connecting to the right database, so don't count it in
- $nb_courses_student++;
- }
- }
- }
- // average progress of the student
- $avg_student_progress = $nb_courses_student ? $avg_student_progress / $nb_courses_student:0;
- $avg_total_progress += $avg_student_progress;
- // average test results of the student
- $avg_student_score = $avg_student_score ? $avg_student_score / $nb_courses_student:0;
- $avg_results_to_exercises += $avg_student_score;
- }
- if ($nb_students > 0 && $view != 'admin') {
- // average progress
- $avg_total_progress = $avg_total_progress / $nb_students;
- // average results to the tests
- $avg_results_to_exercises = $avg_results_to_exercises / $nb_students;
- // average courses by student
- $avg_courses_per_student = round($count_courses / $nb_students, 2);
- // average time spent on the platform
- $avg_time_spent = $total_time_spent / $nb_students;
- // average assignments
- $nb_assignments = $nb_assignments / $nb_students;
- // average posts
- $nb_posts = $nb_posts / $nb_students;
- echo Display::page_subheader('<img src="'.api_get_path(WEB_IMG_PATH).'teachers.gif"> '.get_lang('Overview'));
- echo '<div class="report_section">
- <table class="table table-bordered">
- <tr>
- <td>'.get_lang('FollowedUsers').'</td>
- <td align="right">'.$nb_students.'</td>
- </tr>
- <tr>
- <td>'.get_lang('FollowedCourses').'</td>
- <td align="right">'.$count_courses.'</td>
- </tr>
- <tr>
- <td>'.get_lang('FollowedSessions').'</td>
- <td align="right">'.$count_sessions.'</td>
- </tr>
- </table>';
- echo '</div>';
- echo Display::page_subheader('<img src="'.api_get_path(WEB_IMG_PATH).'students.gif"> '.get_lang('Students').' ('.$nb_students.')');
- if ($export_csv) {
- //csv part
- $csv_content[] = array(get_lang('Students', ''));
- $csv_content[] = array(get_lang('InactivesStudents', ''), $nb_inactive_students );
- $csv_content[] = array(get_lang('AverageTimeSpentOnThePlatform', ''), $avg_time_spent);
- $csv_content[] = array(get_lang('AverageCoursePerStudent', ''), $avg_courses_per_student);
- $csv_content[] = array(get_lang('AverageProgressInLearnpath', ''), is_null($avg_total_progress) ? null : round($avg_total_progress, 2).'%');
- $csv_content[] = array(get_lang('AverageResultsToTheExercices', ''), is_null($avg_results_to_exercises) ? null : round($avg_results_to_exercises, 2).'%');
- $csv_content[] = array(get_lang('AveragePostsInForum', ''), $nb_posts);
- $csv_content[] = array(get_lang('AverageAssignments', ''), $nb_assignments);
- $csv_content[] = array();
- } else {
- // html part
- echo '<div class="report_section">
- <table class="table table-bordered">
- <tr>
- <td>'.get_lang('AverageCoursePerStudent').'</td>
- <td align="right">'.(is_null($avg_courses_per_student) ? '' : $avg_courses_per_student).'</td>
- </tr>
- <tr>
- <td>'.get_lang('InactivesStudents').'</td>
- <td align="right">'.$nb_inactive_students.'</td>
- </tr>
- <tr>
- <td>'.get_lang('AverageTimeSpentOnThePlatform').'</td>
- <td align="right">'.(is_null($avg_time_spent) ? '' : api_time_to_hms($avg_time_spent)).'</td>
- </tr>
- <tr>
- <td>'.get_lang('AverageProgressInLearnpath').'</td>
- <td align="right">'.(is_null($avg_total_progress) ? '' : round($avg_total_progress, 2).'%').'</td>
- </tr>
- <tr>
- <td>'.get_lang('AvgCourseScore').'</td>
- <td align="right">'.(is_null($avg_results_to_exercises) ? '' : round($avg_results_to_exercises, 2).'%').'</td>
- </tr>
- <tr>
- <td>'.get_lang('AveragePostsInForum').'</td>
- <td align="right">'.(is_null($nb_posts) ? '' : round($nb_posts, 2)).'</td>
- </tr>
- <tr>
- <td>'.get_lang('AverageAssignments').'</td>
- <td align="right">'.(is_null($nb_assignments) ? '' : round($nb_assignments, 2)).'</td>
- </tr>
- </table>
- <a class="btn" href="student.php">'.get_lang('SeeStudentList').'</a>
- </div><br />';
- }
- } else {
- $avg_total_progress = null;
- $avg_results_to_exercises = null;
- $avg_courses_per_student = null;
- $avg_time_spent = null;
- $nb_assignments = null;
- $nb_posts = null;
- }
- } else {
- // Sessions.
- $visibility = api_get_session_visibility($session_id);
- if ($visibility == SESSION_INVISIBLE) {
- Display::display_warning_message(get_lang('NotAvailable'));
- Display::display_footer();
- }
- $courses = Tracking::get_courses_followed_by_coach($user_id, $session_id);
- //If is drh
- if ($is_drh) {
- $courses_of_the_platform = CourseManager :: get_courses_followed_by_drh($user_id);
- $courses = array();
- $courses_from_session = SessionManager::get_course_list_by_session_id($session_id);
- foreach ($courses_from_session as $course_item) {
- if (isset($courses_of_the_platform[$course_item['code']])) {
- $courses[$course_item['code']] = $course_item['code'];
- }
- }
- if (empty($courses)) {
- Display::display_warning_message(get_lang('NoResults'));
- }
- }
- //Courses for the user
- $count_courses = count($courses);
- //Sessions for the user
- $count_sessions = count($sessions);
- }
- if ($count_courses || $count_sessions) {
- // If we are in course.
- if (empty($session_id)) {
- if ($count_courses) {
- $title = '<img src="'.api_get_path(WEB_IMG_PATH).'course.gif"> '.get_lang('Courses').' ('.$count_courses.') ';
- }
- } else {
- //If we are in Course Session
- $session_name = api_get_session_name($session_id);
- $title = Display::return_icon('session.png', get_lang('Session'), array(), ICON_SIZE_SMALL).' '.$session_name;
- $menu_items[] = '<a href="'.api_get_self().'?view=teacher">'.get_lang('TeacherInterface').'</a>';
- }
- }
- if ((api_is_allowed_to_create_course() || api_is_drh()) && in_array($view, array('teacher', 'drh'))) {
- //Courses
- if ($count_courses) {
- echo Display::page_subheader($title);
- $data = MySpace::get_course_data(null, null, null, null, $courses, $csv_content, $charset);
- $table = new SortableTable('courses_my_space', 'get_number_of_courses');
- $parameters['view'] = 'teacher';
- $parameters['class'] = 'data_table';
- $table->set_additional_parameters($parameters);
- $table->set_header(0, get_lang('CourseTitle'), false);
- $table->set_header(1, get_lang('NbStudents'), false);
- $table->set_header(2, get_lang('AvgTimeSpentInTheCourse').' '.Display :: return_icon('info3.gif', get_lang('TimeOfActiveByTraining'), array('align' => 'absmiddle', 'hspace' => '3px')), false);
- $table->set_header(3, get_lang('AvgStudentsProgress').' '.Display :: return_icon('info3.gif', get_lang('AvgAllUsersInAllCourses'), array('align' => 'absmiddle', 'hspace' => '3px')), false);
- $table->set_header(4, get_lang('AvgCourseScore').' '.Display :: return_icon('info3.gif', get_lang('AvgAllUsersInAllCourses'), array('align' => 'absmiddle', 'hspace' => '3px')), false);
- $table->set_header(5, get_lang('AvgExercisesScore').' '.Display :: return_icon('info3.gif', get_lang('AvgAllUsersInAllCourses'), array('align' => 'absmiddle', 'hspace' => '3px')), false);
- $table->set_header(6, get_lang('AvgMessages'), false);
- $table->set_header(7, get_lang('AverageAssignments'), false);
- $table->set_header(8, get_lang('Details'), false);
- foreach ($data as $row) {
- $table->addRow($row);
- }
- $csv_content[] = array (
- get_lang('CourseTitle', ''),
- get_lang('NbStudents', ''),
- get_lang('AvgTimeSpentInTheCourse', ''),
- get_lang('AvgStudentsProgress', ''),
- get_lang('AvgCourseScore', ''),
- get_lang('AvgExercisesScore', ''),
- get_lang('AvgMessages', ''),
- get_lang('AverageAssignments', '')
- );
- $table->display();
- }
- // Display list of sessions
- if ($count_sessions > 0 && empty($session_id)) {
- $title = Display::return_icon('session.png', get_lang('Sessions'), array(), ICON_SIZE_SMALL).' '.get_lang('Sessions').' ('.$count_sessions.')';
- echo Display::page_subheader($title);
- $columns = array(
- get_lang('Title'),
- get_lang('SessionDisplayStartDate'),
- get_lang('SessionDisplayEndDate'),
- get_lang('NbStudentPerSession'),
- get_lang('NbCoursesPerSession'),
- get_lang('Details')
- );
- //'formatter'=>'action_formatter',
- $column_model = array (
- array('name'=>'name', 'index'=>'name', 'width'=>'120', 'align'=>'left', 'search' => 'true', 'searchoptions' => array()),
- array('name'=>'display_start_date', 'index'=>'display_start_date', 'width'=>'70', 'align'=>'left', 'search' => 'true', 'searchoptions' => array(), 'sorttype' => 'date'),
- array('name'=>'display_end_date', 'index'=>'display_end_date', 'width'=>'70', 'align'=>'left', 'search' => 'true', 'searchoptions' => array(), 'sorttype' => 'date'),
- array('name'=>'number_student_per_session', 'index'=>'number_student_per_session', 'width'=>'70', 'align'=>'left', 'search' => 'true', 'searchoptions' => array(), 'sorttype' => 'numeric'),
- array('name'=>'courses_per_session', 'index'=>'courses_per_session','width'=>'70', 'align'=>'left', 'search' => 'false', 'searchoptions' => array(), 'sorttype' => 'numeric'),
- array('name'=>'details', 'index'=>'details', 'width'=>'80', 'align'=>'left', 'sortable'=>'false', 'search' => 'false'),
- );
- //Autowidth
- $extra_params['autowidth'] = 'true';
- //height auto
- $extra_params['height'] = 'auto';
- $extra_params['sortname'] = 'display_start_date';
- $extra_params['sortorder'] = 'desc';
- $all_data = array();
- foreach ($sessions as $session) {
- $visibility = api_get_session_visibility($session['id']);
- $count_courses_in_session = count(Tracking::get_courses_followed_by_coach($user_id, $session['id']));
- $count_users_in_session = count(SessionManager::get_users_by_session($session['id'], 0));
- $row = array();
- $row['name'] = $session['name'];
- $row['display_start_date'] = api_get_local_time($session['display_start_date'], null, null, true);
- $row['display_end_date'] = api_get_local_time($session['display_end_date'], null, null, true);
- $row['number_student_per_session'] = $count_courses_in_session;
- $row['courses_per_session'] = $count_users_in_session;
- if ($visibility == SESSION_INVISIBLE) {
- $row['details'] = '<img src="'.api_get_path(WEB_IMG_PATH).'2rightarrow_na.gif" />';
- } else {
- $row['details'] = '<a href="'.api_get_self().'?session_id='.$session['id'].'"><img src="'.api_get_path(WEB_IMG_PATH).'2rightarrow.gif" border="0" /></a>';
- }
- $all_data[] = $row;
- }
- echo "<script>
- $(function() {
- ".Display::grid_js('sessions', null, $columns, $column_model, $extra_params, $all_data)."
- });
- </script>";
- $nb_sessions_past = $nb_sessions_current = 0;
- $courses = array();
- foreach ($sessions as $session) {
- $visibility = api_get_session_visibility($session['id']);
- if ($visibility == SESSION_AVAILABLE) {
- $nb_sessions_current ++;
- } else {
- $nb_sessions_past++;
- }
- $courses = array_merge($courses, Tracking::get_courses_list_from_session($session['id']));
- }
- $nb_courses_per_session = null;
- $nb_students_per_session = null;
- if ($count_sessions > 0) {
- $nb_courses_per_session = round(count($courses) / $count_sessions, 2);
- $nb_students_per_session = round($nb_students / $count_sessions, 2);
- }
- if ($export_csv) {
- //csv part
- $csv_content[] = array(get_lang('Sessions', ''));
- $csv_content[] = array(get_lang('NbActiveSessions', '').';'.$nb_sessions_current);
- $csv_content[] = array(get_lang('NbInactiveSessions', '').';'.$nb_sessions_past);
- //$csv_content[] = array(get_lang('NbFutureSessions', '').';'.$nb_sessions_future);
- $csv_content[] = array(get_lang('NbCoursesPerSession', '').';'.$nb_courses_per_session);
- $csv_content[] = array(get_lang('NbStudentPerSession', '').';'.$nb_students_per_session);
- $csv_content[] = array();
- } else {
- echo '
- <div class="report_section">
- <table class="table table-bordered">
- <tr>
- <td>'.get_lang('NbActiveSessions').'</td>
- <td align="right">'.$nb_sessions_current.'</td>
- </tr>
- <tr>
- <td>'.get_lang('NbInactiveSessions').'</td>
- <td align="right">'.$nb_sessions_past.'</td>
- </tr>
- </table>
- </div>';
- }
- echo Display::grid_html('sessions');
- /* End session overview */
- }
- }
- if ($is_platform_admin && $view == 'admin' && $display != 'yourstudents') {
- echo '<a href="'.api_get_self().'?view=admin&display=coaches">'.get_lang('DisplayCoaches').'</a> | ';
- echo '<a href="'.api_get_self().'?view=admin&display=useroverview">'.get_lang('DisplayUserOverview').'</a>';
- if ($display == 'useroverview') {
- echo ' ( <a href="'.api_get_self().'?view=admin&display=useroverview&export=options">'.get_lang('ExportUserOverviewOptions').'</a> )';
- }
- echo ' | <a href="'.api_get_self().'?view=admin&display=sessionoverview">'.get_lang('DisplaySessionOverview').'</a>';
- echo ' | <a href="'.api_get_self().'?view=admin&display=courseoverview">'.get_lang('DisplayCourseOverview').'</a>';
- echo ' | <a href="'.api_get_path(WEB_CODE_PATH).'tracking/question_course_report.php?view=admin">'.get_lang('LPQuestionListResults').'</a>';
- echo ' | <a href="'.api_get_path(WEB_CODE_PATH).'tracking/course_session_report.php?view=admin">'.get_lang('LPExerciseResultsBySession').'</a>';
- echo '<br /><br />';
- if ($display === 'useroverview') {
- MySpace::display_tracking_user_overview();
- } else if($display == 'sessionoverview') {
- MySpace::display_tracking_session_overview();
- } else if($display == 'courseoverview') {
- MySpace::display_tracking_course_overview();
- } else {
- if ($export_csv) {
- $is_western_name_order = api_is_western_name_order(PERSON_NAME_DATA_EXPORT);
- } else {
- $is_western_name_order = api_is_western_name_order();
- }
- $sort_by_first_name = api_sort_by_first_name();
- $tracking_column = isset($_GET['tracking_list_coaches_column']) ? $_GET['tracking_list_coaches_column'] : ($is_western_name_order xor $sort_by_first_name) ? 1 : 0;
- $tracking_direction = (isset($_GET['tracking_list_coaches_direction']) && in_array(strtoupper($_GET['tracking_list_coaches_direction']), array('ASC', 'DESC', 'ASCENDING', 'DESCENDING', '0', '1'))) ? $_GET['tracking_list_coaches_direction'] : 'DESC';
- // Prepare array for column order - when impossible, use some of user names.
- if ($is_western_name_order) {
- $order = array(0 => 'firstname', 1 => 'lastname', 2 => ($sort_by_first_name ? 'firstname' : 'lastname'), 3 => 'login_date', 4 => ($sort_by_first_name ? 'firstname' : 'lastname'), 5 => ($sort_by_first_name ? 'firstname' : 'lastname'));
- } else {
- $order = array(0 => 'lastname', 1 => 'firstname', 2 => ($sort_by_first_name ? 'firstname' : 'lastname'), 3 => 'login_date', 4 => ($sort_by_first_name ? 'firstname' : 'lastname'), 5 => ($sort_by_first_name ? 'firstname' : 'lastname'));
- }
- $table = new SortableTable('tracking_list_coaches_myspace', 'count_coaches', null, ($is_western_name_order xor $sort_by_first_name) ? 1 : 0);
- $parameters['view'] = 'admin';
- $table->set_additional_parameters($parameters);
- if ($is_western_name_order) {
- $table -> set_header(0, get_lang('FirstName'), true);
- $table -> set_header(1, get_lang('LastName'), true);
- } else {
- $table -> set_header(0, get_lang('LastName'), true);
- $table -> set_header(1, get_lang('FirstName'), true);
- }
- $table -> set_header(2, get_lang('TimeSpentOnThePlatform'), false);
- $table -> set_header(3, get_lang('LastConnexion'), false);
- $table -> set_header(4, get_lang('NbStudents'), false);
- $table -> set_header(5, get_lang('CountCours'), false);
- $table -> set_header(6, get_lang('NumberOfSessions'), false);
- $table -> set_header(7, get_lang('Sessions'), false);
- if ($is_western_name_order) {
- $csv_header[] = array (
- get_lang('FirstName', ''),
- get_lang('LastName', ''),
- get_lang('TimeSpentOnThePlatform', ''),
- get_lang('LastConnexion', ''),
- get_lang('NbStudents', ''),
- get_lang('CountCours', ''),
- get_lang('NumberOfSessions', '')
- );
- } else {
- $csv_header[] = array (
- get_lang('LastName', ''),
- get_lang('FirstName', ''),
- get_lang('TimeSpentOnThePlatform', ''),
- get_lang('LastConnexion', ''),
- get_lang('NbStudents', ''),
- get_lang('CountCours', ''),
- get_lang('NumberOfSessions', '')
- );
- }
- $tbl_track_login = Database :: get_main_table(TABLE_STATISTIC_TRACK_E_LOGIN);
- $sqlCoachs = "SELECT DISTINCT scu.id_user as id_coach, user_id, lastname, firstname, MAX(login_date) as login_date
- FROM $tbl_user, $tbl_session_course_user scu, $tbl_track_login
- WHERE scu.id_user=user_id AND
- scu.status=2 AND
- login_user_id=user_id
- GROUP BY user_id ";
- if ($_configuration['multiple_access_urls']) {
- $tbl_session_rel_access_url = Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_SESSION);
- $access_url_id = api_get_current_access_url_id();
- if ($access_url_id != -1) {
- $sqlCoachs = "SELECT DISTINCT scu.id_user as id_coach, user_id, lastname, firstname, MAX(login_date) as login_date
- FROM $tbl_user, $tbl_session_course_user scu, $tbl_track_login , $tbl_session_rel_access_url session_rel_url
- WHERE scu.id_user=user_id AND scu.status=2 AND login_user_id=user_id AND access_url_id = $access_url_id AND session_rel_url.session_id=id_session
- GROUP BY user_id ";
- }
- }
- if (!empty($order[$tracking_column])) {
- $sqlCoachs .= "ORDER BY ".$order[$tracking_column]." ".$tracking_direction;
- }
- $result_coaches = Database::query($sqlCoachs);
- $total_no_coaches = Database::num_rows($result_coaches);
- $global_coaches = array();
- while ($coach = Database::fetch_array($result_coaches)) {
- $global_coaches[$coach['user_id']] = $coach;
- }
- $sql_session_coach = 'SELECT session.id_coach, user_id, lastname, firstname, MAX(login_date) as login_date
- FROM '.$tbl_user.','.$tbl_sessions.' as session,'.$tbl_track_login.'
- WHERE id_coach=user_id AND login_user_id=user_id
- GROUP BY user_id
- ORDER BY login_date '.$tracking_direction;
- if ($_configuration['multiple_access_urls']) {
- $tbl_session_rel_access_url = Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_SESSION);
- $access_url_id = api_get_current_access_url_id();
- if ($access_url_id != -1) {
- $sql_session_coach = 'SELECT session.id_coach, user_id, lastname, firstname, MAX(login_date) as login_date
- FROM '.$tbl_user.','.$tbl_sessions.' as session,'.$tbl_track_login.' , '.$tbl_session_rel_access_url.' as session_rel_url
- WHERE id_coach=user_id AND login_user_id=user_id AND access_url_id = '.$access_url_id.' AND session_rel_url.session_id=session.id
- GROUP BY user_id
- ORDER BY login_date '.$tracking_direction;
- }
- }
- $result_sessions_coach = Database::query($sql_session_coach);
- $total_no_coaches += Database::num_rows($result_sessions_coach);
- while ($coach = Database::fetch_array($result_sessions_coach)) {
- $global_coaches[$coach['user_id']] = $coach;
- }
- $all_datas = array();
- foreach ($global_coaches as $id_coach => $coaches) {
- $time_on_platform = api_time_to_hms(Tracking :: get_time_spent_on_the_platform($coaches['user_id']));
- $last_connection = Tracking :: get_last_connection_date($coaches['user_id']);
- $nb_students = count(Tracking :: get_student_followed_by_coach($coaches['user_id']));
- $nb_courses = count(Tracking :: get_courses_followed_by_coach($coaches['user_id']));
- $nb_sessions = count(Tracking :: get_sessions_coached_by_user($coaches['user_id']));
- $table_row = array();
- if ($is_western_name_order) {
- $table_row[] = $coaches['firstname'];
- $table_row[] = $coaches['lastname'];
- } else {
- $table_row[] = $coaches['lastname'];
- $table_row[] = $coaches['firstname'];
- }
- $table_row[] = $time_on_platform;
- $table_row[] = $last_connection;
- $table_row[] = $nb_students;
- $table_row[] = $nb_courses;
- $table_row[] = $nb_sessions;
- $table_row[] = '<a href="session.php?id_coach='.$coaches['user_id'].'"><img src="'.api_get_path(WEB_IMG_PATH).'2rightarrow.gif" border="0" /></a>';
- $all_datas[] = $table_row;
- if ($is_western_name_order) {
- $csv_content[] = array(
- api_html_entity_decode($coaches['firstname'], ENT_QUOTES, $charset),
- api_html_entity_decode($coaches['lastname'], ENT_QUOTES, $charset),
- $time_on_platform,
- $last_connection,
- $nb_students,
- $nb_courses,
- $nb_sessions
- );
- } else {
- $csv_content[] = array(
- api_html_entity_decode($coaches['lastname'], ENT_QUOTES, $charset),
- api_html_entity_decode($coaches['firstname'], ENT_QUOTES, $charset),
- $time_on_platform,
- $last_connection,
- $nb_students,
- $nb_courses,
- $nb_sessions
- );
- }
- }
- if ($tracking_column != 3) {
- if ($tracking_direction == 'DESC') {
- usort($all_datas, 'rsort_users');
- } else {
- usort($all_datas, 'sort_users');
- }
- }
- if ($export_csv && $tracking_column != 3) {
- usort($csv_content, 'sort_users');
- }
- if ($export_csv) {
- $csv_content = array_merge($csv_header, $csv_content);
- }
- foreach ($all_datas as $row) {
- $table->addRow($row, 'align="right"');
- }
- $table->display();
- }
- }
- // send the csv file if asked
- if ($export_csv) {
- ob_end_clean();
- Export :: export_table_csv($csv_content, 'reporting_index');
- exit;
- }
- //footer
- if (!$export_csv) {
- Display::display_footer();
- }
- /**
- * Get number of courses for sortable with pagination
- * @return int
- */
- function get_number_of_courses() {
- global $courses;
- return count($courses);
- }
|