function show_image(image,width,height) { width = parseInt(width) + 20; height = parseInt(height) + 20; window_x = window.open(image,\'windowX\',\'width=\'+ width + \', height=\'+ height + \'\'); } '; $export_csv = isset ($_GET['export']) && $_GET['export'] == 'csv' ? true : false; if ($export_csv) { ob_start(); } $csv_content = array (); $from_myspace = false; if (isset ($_GET['from']) && $_GET['from'] == 'myspace') { $from_myspace = true; $this_section = SECTION_TRACKING; } else { $this_section = SECTION_COURSES; } $nameTools = get_lang('StudentDetails'); $cidReset = true; $get_course_code = Security :: remove_XSS($_GET['course']); if (isset ($_GET['details'])) { if (!empty ($_GET['origin']) && $_GET['origin'] == 'user_course') { $course_info = CourseManager :: get_course_information($get_course_code); if (empty ($cidReq)) { $interbreadcrumb[] = array ( "url" => api_get_path(WEB_COURSE_PATH) . $course_info['directory'], 'name' => $course_info['title'] ); } $interbreadcrumb[] = array ( "url" => "../user/user.php?cidReq=" . $get_course_code, "name" => get_lang("Users") ); } else if (!empty ($_GET['origin']) && $_GET['origin'] == 'tracking_course') { $course_info = CourseManager :: get_course_information($get_course_code); if (empty ($cidReq)) { //$interbreadcrumb[] = array ("url" => api_get_path(WEB_COURSE_PATH).$course_info['directory'], 'name' => $course_info['title']); } $interbreadcrumb[] = array ( "url" => "../tracking/courseLog.php?cidReq=" . $get_course_code . '&studentlist=true&id_session=' . (empty ($_SESSION['id_session']) ? '' : $_SESSION['id_session']), "name" => get_lang("Tracking") ); } else if (!empty ($_GET['origin']) && $_GET['origin'] == 'resume_session') { $interbreadcrumb[] = array ( 'url' => '../admin/index.php', "name" => get_lang('PlatformAdmin') ); $interbreadcrumb[] = array ( 'url' => "../admin/session_list.php", "name" => get_lang('SessionList') ); $interbreadcrumb[] = array ( 'url' => "../admin/resume_session.php?id_session=" . Security :: remove_XSS($_GET['id_session']), "name" => get_lang('SessionOverview') ); } else { $interbreadcrumb[] = array ( "url" => "index.php", "name" => get_lang('MySpace') ); if (isset ($_GET['id_coach']) && intval($_GET['id_coach']) != 0) { $interbreadcrumb[] = array ( "url" => "student.php?id_coach=" . Security :: remove_XSS($_GET['id_coach']), "name" => get_lang("CoachStudents") ); $interbreadcrumb[] = array ( "url" => "myStudents.php?student=" . Security :: remove_XSS($_GET['student']) . '&id_coach=' . Security :: remove_XSS($_GET['id_coach']), "name" => get_lang("StudentDetails") ); } else { $interbreadcrumb[] = array ( "url" => "student.php", "name" => get_lang("MyStudents") ); $interbreadcrumb[] = array ( "url" => "myStudents.php?student=" . Security :: remove_XSS($_GET['student']), "name" => get_lang("StudentDetails") ); } } $nameTools = get_lang("DetailsStudentInCourse"); } else { if (!empty ($_GET['origin']) && $_GET['origin'] == 'resume_session') { $interbreadcrumb[] = array ( 'url' => '../admin/index.php', "name" => get_lang('PlatformAdmin') ); $interbreadcrumb[] = array ( 'url' => "../admin/session_list.php", "name" => get_lang('SessionList') ); $interbreadcrumb[] = array ( 'url' => "../admin/resume_session.php?id_session=" . Security :: remove_XSS($_GET['id_session']), "name" => get_lang('SessionOverview') ); } else { $interbreadcrumb[] = array ( "url" => "index.php", "name" => get_lang('MySpace') ); if (isset ($_GET['id_coach']) && intval($_GET['id_coach']) != 0) { if (isset ($_GET['id_session']) && intval($_GET['id_session']) != 0) { $interbreadcrumb[] = array ( "url" => "student.php?id_coach=" . Security :: remove_XSS($_GET['id_coach']) . "&id_session=" . $_GET['id_session'], "name" => get_lang("CoachStudents") ); } else { $interbreadcrumb[] = array ( "url" => "student.php?id_coach=" . Security :: remove_XSS($_GET['id_coach']), "name" => get_lang("CoachStudents") ); } } else { $interbreadcrumb[] = array ( "url" => "student.php", "name" => get_lang("MyStudents") ); } } } api_block_anonymous_users(); if (!api_is_allowed_to_edit() && !api_is_coach() && !api_is_drh() && !api_is_course_tutor() && $_user['status'] != SESSIONADMIN && !api_is_platform_admin(true)) { api_not_allowed(true); } Display :: display_header($nameTools); /* * MAIN CODE */ // Database Table Definitions $tbl_user = Database :: get_main_table(TABLE_MAIN_USER); $tbl_session_user = Database :: get_main_table(TABLE_MAIN_SESSION_USER); $tbl_session = Database :: get_main_table(TABLE_MAIN_SESSION); $tbl_session_course = Database :: get_main_table(TABLE_MAIN_SESSION_COURSE); $tbl_session_course_user = Database :: get_main_table(TABLE_MAIN_SESSION_COURSE_USER); $tbl_course = Database :: get_main_table(TABLE_MAIN_COURSE); $tbl_course_user = Database :: get_main_table(TABLE_MAIN_COURSE_USER); $tbl_stats_access = Database :: get_statistic_table(TABLE_STATISTIC_TRACK_E_ACCESS); $tbl_stats_exercices = Database :: get_statistic_table(TABLE_STATISTIC_TRACK_E_EXERCICES); $tbl_stats_exercices_attempts= Database :: get_statistic_table(TABLE_STATISTIC_TRACK_E_ATTEMPT); //$tbl_course_lp_view = 'lp_view'; //$tbl_course_lp_view_item = 'lp_item_view'; //$tbl_course_lp_item = 'lp_item'; //$tbl_course_lp = 'lp'; //$tbl_course_quiz = 'quiz'; //$course_quiz_question = 'quiz_question'; //$course_quiz_rel_question = 'quiz_rel_question'; //$course_quiz_answer = 'quiz_answer'; //$course_student_publication = Database :: get_course_table(TABLE_STUDENT_PUBLICATION); if (isset($_GET['user_id']) && $_GET['user_id'] != "") { $user_id = intval($_GET['user_id']); } else { $user_id = $_user['user_id']; } $session_id = intval($_GET['id_session']); $student_id = intval($_GET['student']); // Action behaviour $check= Security::check_token('get'); if ($check) { switch ($_GET['action']) { case 'reset_lp' : $origin = isset($_GET['origin']) ?Security::remove_XSS($_GET['origin']):""; $details = isset($_GET['details']) ?Security::remove_XSS($_GET['details']):""; $course = isset($_GET['course']) ?$_GET['course']:""; $lp_id = isset($_GET['lp_id']) ?intval($_GET['lp_id']):""; $session_id = isset($_GET['session_id'])?intval($_GET['session_id']):0; $lp_reset = 0; if(api_is_platform_admin(true) && !empty($course) && !empty($lp_id) && !empty($student_id)) { $course_info = api_get_course_info($course); $lp_view_table = Database::get_course_table(TABLE_LP_VIEW, $course_info['db_name']); $lp_item_view_table = Database::get_course_table(TABLE_LP_ITEM_VIEW, $course_info['db_name']); //make sure we have the exact lp_view_id $sqlview = "SELECT id FROM $lp_view_table WHERE user_id = $student_id AND lp_id = $lp_id AND session_id= $session_id"; $resultview = Database::query($sqlview); $view = Database::fetch_array($resultview, 'ASSOC'); $lp_view_id = $view['id'] ; $sql_delete = "DELETE FROM $lp_item_view_table WHERE lp_view_id = $view_id "; $result = Database::query($sql_delete); $sql_delete = "DELETE FROM $lp_view_table WHERE user_id = $student_id AND lp_id= $lp_id AND session_id= $session_id "; $result = Database::query($sql_delete); //@todo delete the stats.track_e_exercices records. First implement this http://support.chamilo.org/issues/1334 Display::display_confirmation_message('LPWasReset'); } break; default: break; } Security::clear_token(); } if (!empty ($_GET['student'])) { // infos about user $info_user = UserManager :: get_user_info_by_id($student_id); if (api_is_drh() && !UserManager::is_user_followed_by_drh($student_id, $_user['user_id'])) { api_not_allowed(); } $info_user['name'] = api_get_person_name($info_user['firstname'], $info_user['lastname']); // Actions bar echo '
'; echo ' ' . get_lang('Print') . ''; echo ' ' . get_lang('ExportAsCSV') . ''; if (!empty ($info_user['email'])) { $send_mail = Display :: return_icon('send_mail.gif', get_lang('SendMail')) . ' ' . Display :: encrypted_mailto_link($info_user['email'], get_lang('SendMail')); } else { $send_mail = Display :: return_icon('send_mail.gif', get_lang('SendMail')) . ' ' . get_lang('SendMail'); } echo $send_mail; if (!empty ($_GET['student']) && !empty ($_GET['course'])) { //only show link to connection details if course and student were defined in the URL echo '' . Display :: return_icon('statistics.gif', get_lang('AccessDetails')) . ' ' . get_lang('AccessDetails') . ''; } echo '
'; // is the user online ? $student_online = Security :: remove_XSS($_GET['student']); $users_online = who_is_online(30); foreach ($users_online as $online) { if (in_array($_GET['student'], $online)) { $online = get_lang('Yes'); break; } else { $online = get_lang('No'); } } // get average of score and average of progress by student $avg_student_progress = $avg_student_score = $nb_courses = 0; $course_id = Security :: remove_XSS($_GET['course']); if (!CourseManager :: is_user_subscribed_in_course($info_user['user_id'], $course_id, true)) { unset ($courses[$key]); } else { $nb_courses++; $avg_student_progress = Tracking::get_avg_student_progress($info_user['user_id'], $course_id, array(), $session_id); //the score inside the Reporting table $avg_student_score = Tracking::get_avg_student_score($info_user['user_id'], $course_id, array(), $session_id); } $avg_student_progress = round($avg_student_progress, 2); // time spent on the course $time_spent_on_the_course = api_time_to_hms(Tracking :: get_time_spent_on_the_course($info_user['user_id'], $course_id, $session_id)); // get information about connections on the platform by student $first_connection_date = Tracking :: get_first_connection_date($info_user['user_id']); if ($first_connection_date == '') { $first_connection_date = get_lang('NoConnexion'); } $last_connection_date = Tracking :: get_last_connection_date($info_user['user_id'], true); if ($last_connection_date == '') { $last_connection_date = get_lang('NoConnexion'); } // cvs informations $csv_content[] = array ( get_lang('Informations', '') ); $csv_content[] = array ( get_lang('Name', ''), get_lang('Email', ''), get_lang('Tel', '') ); $csv_content[] = array ( $info_user['name'], $info_user['email'], $info_user['phone'] ); $csv_content[] = array (); // csv tracking $csv_content[] = array ( get_lang('Tracking', '') ); $csv_content[] = array ( get_lang('FirstLogin', ''), get_lang('LatestLogin', ''), get_lang('TimeSpentInTheCourse', ''), get_lang('Progress', ''), get_lang('Score', '') ); $csv_content[] = array ( strip_tags($first_connection_date), strip_tags($last_connection_date), $time_spent_on_the_course, $avg_student_progress . '%', $avg_student_score ); ?> '; // get the path,width and height from original picture $image_file = $image_array['dir'] . $image_array['file']; $big_image = $image_array['dir'] . 'big_' . $image_array['file']; $big_image_size = api_getimagesize($big_image); $big_image_width = $big_image_size[0]; $big_image_height = $big_image_size[1]; $url_big_image = $big_image . '?rnd=' . time(); $img_attributes = 'src="' . $image_file . '?rand=' . time() . '" ' . 'alt="' . api_get_person_name($info_user['lastname'], $info_user['firstname']) . '" ' . 'style="float:' . ($text_dir == 'rtl' ? 'left' : 'right') . '; padding:5px;" '; if ($image_array['file'] == 'unknown.jpg') { echo ''; } else { echo ''; } echo ''; ?>
' . $info_user['email'] . ''; } else { echo get_lang('NoEmail'); } ?>
'absmiddle', 'hspace' => '3px')); ?>
'absmiddle', 'hspace' => '3px')); ?>
0) { $session_info = api_get_session_info($session_id); $course_coachs = api_get_coachs_from_course($session_id,$course_code); $nb_login = ''; if (!empty($course_coachs)) { $info_tutor_name = array(); foreach ($course_coachs as $course_coach) { $info_tutor_name[] = api_get_person_name($course_coach['firstname'], $course_coach['lastname']); } $info_course['tutor_name'] = implode(",",$info_tutor_name); } elseif ($session_coach_id != 0) { $session_coach_id = intval($session_info['id_coach']); $coach_info = UserManager::get_user_info_by_id($session_coach_id); $info_course['tutor_name'] = api_get_person_name($coach_info['firstname'], $coach_info['lastname']); } $coachs_name = $info_course['tutor_name']; $session_name = $session_info['name']; } // end if(api_get_setting('use_session_mode')=='true') $table_title = $info_course['title'].($nb_login?' | '.get_lang('CountToolAccess').' : '.$nb_login:'').($session_name?' | '.get_lang('Session').' : '.ucfirst($session_name):'').($coachs_name?' | '.get_lang('Tutor').' : '.stripslashes($coachs_name):''); $csv_content[] = array (); $csv_content[] = array (str_replace(' ', '', $table_title)); ?>
 
'.get_lang('Details').''; if (api_is_platform_admin(true)) { echo ''; } ?> 0) { $i = 0; while ($learnpath = Database :: fetch_array($rs_lp)) { $lp_id = intval($learnpath['id']); $lp_name = $learnpath['name']; $any_result = false; // Get progress in lp $progress = Tracking::get_avg_student_progress($student_id, $course_code, array($lp_id),$session_id); if ($progress === null) { $progress = '0%'; } else { $any_result = true; } // Get time in lp $total_time = Tracking::get_time_spent_in_lp($student_id, $course_code, array($lp_id),$session_id); if (!empty($total_time)) $any_result = true; // Get last connection time in lp $start_time = Tracking::get_last_connection_time_in_lp($student_id, $course_code, $lp_id,$session_id); if (!empty($total_time)) $any_result = true; // Quizz in lp $score = Tracking :: get_avg_student_score($student_id, $course_code, array($lp_id),$session_id); if ($i % 2 == 0) $css_class = "row_odd"; else $css_class = "row_even"; $i++; // csv export content $csv_content[] = array ( api_html_entity_decode(stripslashes($lp_name), ENT_QUOTES, $charset), api_time_to_hms($total_time), $score . '%', $progress.'%', date('Y-m-d h:i:s', $start_time) ); ?> '; echo ''; } $data_learnpath[$i][] = $lp_name; $data_learnpath[$i][] = $progress . '%'; $i++; } } else { echo ''; } ?>
'absmiddle', 'hspace' => '3px' )); ?> 'absmiddle', 'hspace' => '3px' )); ?> 'absmiddle', 'hspace' => '3px' )); ?> 'absmiddle', 'hspace' => '3px' )); ?> '.get_lang('ResetLP').'
0) { //Do not change with api_convert_and_format_date, because this value came from the lp_item_view table //which implies several other changes not a priority right now echo date('Y-m-d h:i:s', $start_time); } else { echo '-'; } ?> '; if (api_is_platform_admin(true)) { echo ''; if($any_result === true) { echo ''; echo ''; echo ''; } echo '
'.get_lang('NoLearnpath').'
0) { while ($exercices = Database :: fetch_array($result_exercices)) { $exercise_id = intval($exercices['id']); $count_attempts = Tracking::count_student_exercise_attempts($student_id, $course_code, $exercise_id); $score_percentage = Tracking::get_avg_student_exercise_score($student_id, $course_code, $exercise_id); $csv_content[] = array ( $exercices['title'], $score_percentage . '%', $count_attempts ); if ($i % 2 == 0) $css_class = 'row_odd'; else $css_class = 'row_even'; echo ''; echo ''; echo ''; echo ''; $data_exercices[$i][] = $exercices['title']; $data_exercices[$i][] = $score_percentage . '%'; $data_exercices[$i][] = $count_attempts; $i++; } } else { echo ''; } ?>
'absmiddle', 'hspace' => '3px')) ?>
'.$exercices['title'].''; if ($count_attempts > 0) { echo $score_percentage . '%'; } else { echo '/'; $score_percentage = 0; } echo ''.$count_attempts.''; $sql_last_attempt = 'SELECT exe_id FROM ' . $tbl_stats_exercices . ' WHERE exe_exo_id="'.$exercise_id.'" AND exe_user_id="'.$student_id.'" AND exe_cours_id="'.$course_code.'" AND orig_lp_id = 0 AND orig_lp_item_id = 0 ORDER BY exe_date DESC LIMIT 1'; $result_last_attempt = Database::query($sql_last_attempt); if (Database :: num_rows($result_last_attempt) > 0) { $id_last_attempt = Database :: result($result_last_attempt, 0, 0); if ($count_attempts > 0) echo ' '; } echo '
'.get_lang('NoExercise').'

'.COURSE_RELATION_TYPE_RRHH.' AND user_id=' . Database :: escape_string($info_user['user_id']); $rs = Database::query($sql); while ($row = Database :: fetch_array($rs)) { $courses_in_session[0][] = $row['course_code']; } // get the list of sessions where the user is subscribed as student $sql = 'SELECT id_session, course_code FROM ' . Database :: get_main_table(TABLE_MAIN_SESSION_COURSE_USER) . ' WHERE id_user=' . intval($info_user['user_id']); $rs = Database::query($sql); $tmp_sessions = array(); while ($row = Database :: fetch_array($rs)) { $tmp_sessions[] = $row['id_session']; if (in_array($row['id_session'],$tmp_sessions)) { $courses_in_session[$row['id_session']][] = $row['course_code']; } } } $csv_content[] = array (); $csv_content[] = array ( get_lang('Session', ''), get_lang('Course', ''), get_lang('Time', ''), get_lang('Progress', ''), get_lang('Score', ''), get_lang('AttendancesFaults', ''), get_lang('Evaluations') ); $attendance = new Attendance(); foreach ($courses_in_session as $key => $courses) { $session_id = $key; $session_info = api_get_session_info($session_id); $session_name = $session_info['name']; $date_start = ''; if (!empty ($session_info['date_start'])) { $date_start = explode('-', $session_info['date_start']); $date_start = $date_start[2] . '/' . $date_start[1] . '/' . $date_start[0]; } $date_end = ''; if (!empty ($session_info['date_end'])) { $date_end = explode('-', $session_info['date_end']); $date_end = $date_end[2] . '/' . $date_end[1] . '/' . $date_end[0]; } $date_session = get_lang('From') . ' ' . $date_start . ' ' . get_lang('To') . ' ' . $date_end; $title = ''; if (empty($session_id)) { $title = get_lang('Courses'); } else { $title = ucfirst($session_name).($date_session?' ('.$date_session.')':''); } // courses echo '

'.$title.'

'; echo ''; echo ''; if (!empty($courses)) { foreach ($courses as $course_code) { if (CourseManager :: is_user_subscribed_in_course($student_id, $course_code, true)) { $course_info = CourseManager :: get_course_information($course_code); $time_spent_on_course = api_time_to_hms(Tracking :: get_time_spent_on_the_course($info_user['user_id'], $course_code, $session_id)); // get average of faults in attendances by student $results_faults_avg = $attendance->get_faults_average_by_course($student_id, $course_code, $session_id); if (!empty($results_faults_avg['total'])) { if (api_is_drh()) { $attendances_faults_avg = ''.$results_faults_avg['faults'].'/'.$results_faults_avg['total'].' ('.$results_faults_avg['porcent'].'%)'; } else { $attendances_faults_avg = $results_faults_avg['faults'].'/'.$results_faults_avg['total'].' ('.$results_faults_avg['porcent'].'%)'; } } else { $attendances_faults_avg = '0/0 (0%)'; } // get evaluatios by student $cats = Category::load(null, null, $course_code, null, null, $session_id); $scoretotal = array(); if (isset($cats)) { if (!empty($session_id)) { $scoretotal= $cats[0]->calc_score($student_id, $course_code, $session_id); } else { $scoretotal= $cats[0]->calc_score($student_id, $course_code); } } $scoretotal_display = '0/0 (0%)'; if (!empty($scoretotal)) { /* if (api_is_drh()) { $session_param = !empty($session_id)?'&id_session='.$session_id:''; $scoretotal_display = ''.round($scoretotal[0],2).'/'.round($scoretotal[1],2).'('.round(($scoretotal[0] / $scoretotal[1]) * 100,2) . ' %)'; } else { $scoretotal_display = round($scoretotal[0],2).'/'.round($scoretotal[1],2).'('.round(($scoretotal[0] / $scoretotal[1]) * 100,2) . ' %)'; } */ $scoretotal_display = round($scoretotal[0],2).'/'.round($scoretotal[1],2).'('.round(($scoretotal[0] / $scoretotal[1]) * 100,2) . ' %)'; } $progress = Tracking::get_avg_student_progress($info_user['user_id'], $course_code, null, $session_id); $score = Tracking :: get_avg_student_score($info_user['user_id'], $course_code, null, $session_id); $progress = empty($progress) ? '0%' : $progress.'%'; $score = empty($score) ? '0%' : $score.'%'; $csv_content[] = array ( $session_name, $course_info['title'], $time_spent_on_course, $progress, $score, $attendances_faults_avg, $scoretotal_display ); echo ' '; if (isset ($_GET['id_coach']) && intval($_GET['id_coach']) != 0) { echo ''; } else { echo ''; } echo ''; } } } else { echo ""; } echo '
'.get_lang('Course').' '.get_lang('Time').' '.get_lang('Progress').' '.get_lang('Score').' '.get_lang('AttendancesFaults').' '.get_lang('Evaluations').' '.get_lang('Details').'
'.$course_info['title'].' '.$time_spent_on_course .' '.$progress.' '.$score.' '.$attendances_faults_avg.' '.$scoretotal_display.'
".get_lang('NoCourse')."
'; } } //end of else !empty($details) ?>

" . $exName['title'] . " "; while ($exerciceDetails = Database :: fetch_array($result_exercice_details)) { $sqlAnswer = " SELECT qa.comment, qa.answer FROM " . $t_qa . " as qa WHERE qa.question_id = " . $exerciceDetails['id']; $resultAnswer = Database::query($sqlAnswer); echo ""; echo " " . $exerciceDetails['question'] . ' /' . $exerciceDetails['ponderation'] . " "; while ($answer = Database :: fetch_array($resultAnswer)) { echo " " . $answer['answer'] . " "; if (!empty ($answer['comment'])) echo $answer['comment']; else echo get_lang('NoComment'); echo " "; } } echo ""; } //YW - commented out because it doesn't seem to be used //$header = array_merge($headerLearnpath,$headerExercices,$headerProductions); } if ($export_csv) { ob_end_clean(); Export :: export_table_csv($csv_content, 'reporting_student'); exit; } /* ============================================================================== FOOTER ============================================================================== */ Display :: display_footer();