@ -34,7 +34,6 @@ if (isset($_GET['from']) && $_GET['from'] == 'myspace') {
$this_section = SECTION_COURSES;
}
$is_allowedToTrack = $is_courseAdmin || $is_platformAdmin || $is_courseCoach || $is_sessionAdmin;
if (!$is_allowedToTrack) {
@ -44,11 +43,11 @@ if (!$is_allowedToTrack) {
exit;
}
// including additional libraries
require_once '../ newscorm/learnpath.class.php';
require_once '../ newscorm/learnpathItem.class.php';
require_once '../ newscorm/learnpathList.class.php';
require_once '../ newscorm/scorm.class.php';
require_once '../ newscorm/scormItem.class.php';
require_once api_get_path(SYS_CODE_PATH). 'newscorm/learnpath.class.php';
require_once api_get_path(SYS_CODE_PATH). 'newscorm/learnpathItem.class.php';
require_once api_get_path(SYS_CODE_PATH). 'newscorm/learnpathList.class.php';
require_once api_get_path(SYS_CODE_PATH). 'newscorm/scorm.class.php';
require_once api_get_path(SYS_CODE_PATH). 'newscorm/scormItem.class.php';
require_once api_get_path(LIBRARY_PATH).'tracking.lib.php';
require_once api_get_path(LIBRARY_PATH).'course.lib.php';
require_once api_get_path(LIBRARY_PATH).'usermanager.lib.php';
@ -123,7 +122,7 @@ $nameTools = get_lang('Tracking');
Display::display_header($nameTools, 'Tracking');
require api_get_path(LIBRARY_PATH).'statsUtils.lib.inc.php';
require '../ resourcelinker/resourcelinker.inc.php';
require api_get_path(SYS_CODE_PATH). 'resourcelinker/resourcelinker.inc.php';
$a_students = CourseManager :: get_student_list_from_course_code($_course['id'], true, (empty($_SESSION['id_session']) ? null : $_SESSION['id_session']));
$nbStudents = count($a_students);
@ -152,7 +151,7 @@ if ($_GET['studentlist'] == 'false') {
} else {
echo get_lang('StudentsTracking').' | < a href = "courseLog.php?'.api_get_cidreq().'&studentlist=false" > '.get_lang('CourseTracking').'< / a > ';
}
echo ' < a href = "# " onclick = "window.print()" > < img align = "absbottom" src = "../img/printmgr.gif" > '.get_lang('Print').'< / a > ';
echo ' < a href = "javascript: void(0); " onclick = "javascript: window.print(); " > < img align = "absbottom" src = "../img/printmgr.gif" > '.get_lang('Print').'< / a > ';
if($_GET['studentlist'] == 'false') {
echo '< a href = "'.api_get_self().'?'.api_get_cidreq().'&export=csv&studentlist=false" > < img align = "absbottom" src = "../img/excel.gif" > '.get_lang('ExportAsCSV').'< / a > ';
} else {
@ -164,11 +163,9 @@ echo '</div>';
if ($_GET['studentlist'] == 'false') {
echo'< br / > < br / > ';
/***************************
* LEARNING PATHS
***************************/
echo '< div class = "report_section" >
< h4 >
< img src = "../img/scormbuilder.gif" align = "absbottom" > '.get_lang('AverageProgressInLearnpath').'
@ -179,7 +176,7 @@ if($_GET['studentlist'] == 'false') {
$flat_list = $list->get_flat_list();
if ($export_csv) {
$temp=array(get_lang('AverageProgressInLearnpath'),'');
$temp = array(get_lang('AverageProgressInLearnpath', '' ), '');
$csv_content[] = array('', '');
$csv_content[] = $temp;
}
@ -188,16 +185,21 @@ if($_GET['studentlist'] == 'false') {
foreach ($flat_list as $lp_id => $lp) {
$lp_avg_progress = 0;
foreach ($a_students as $student_id => $student) {
// get the progress in learning pathes
$lp_avg_progress += learnpath::get_db_progress($lp_id, $student_id);
}
if ($nbStudents > 0) {
$lp_avg_progress = $lp_avg_progress / $nbStudents;
} else {
$lp_avg_progress = null;
}
// Separated presentation logic.
if (is_null($lp_avg_progress)) {
$lp_avg_progress = '0%';
} else {
$lp_avg_progress = round($lp_avg_progress, 1).'%';
}
echo '< tr > < td > '.$lp['lp_name'].'< / td > < td align = "right" > '.round($lp_avg_progress,1).' %< / td > < / tr > ';
echo '< tr > < td > '.$lp['lp_name'].'< / td > < td align = "right" > '.$lp_avg_progress.'< / td > < / tr > ';
if ($export_csv) {
$temp = array($lp['lp_name'], $lp_avg_progress);
$csv_content[] = $temp;
@ -206,12 +208,13 @@ if($_GET['studentlist'] == 'false') {
} else {
echo '< tr > < td > '.get_lang('NoLearningPath').'< / td > < / tr > ';
if ($export_csv) {
$temp=array(get_lang('NoLearningPath'),'');
$temp = array(get_lang('NoLearningPath', '' ), '');
$csv_content[] = $temp;
}
}
echo '< / table > < / div > ';
echo '< div class = "clear" > < / div > ';
/***************************
* EXERCICES
***************************/
@ -245,11 +248,8 @@ if($_GET['studentlist'] == 'false') {
$count_students = count($student_ids);
while ($quiz = Database::fetch_array($rs)) {
$quiz_avg_score = 0;
if ($count_students > 0) {
foreach ($student_ids as $student_id) {
// get the scorn in exercises
$sql = 'SELECT exe_result , exe_weighting
FROM '.$TABLETRACK_EXERCISES.'
@ -269,16 +269,14 @@ if($_GET['studentlist'] == 'false') {
$avg_student_score += round(($attempt['exe_result'] / $exe_weight * 100), 2);
}
}
if ($nb_attempts > 0) {
$avg_student_score = $avg_student_score / $nb_attempts;
}
$quiz_avg_score += $avg_student_score;
}
}
$count_students = ($count_students == 0 || is_null($count_students) || $count_students == '') ? 1 : $count_students;
echo '< tr > < td > '.$quiz['title'].'< / td > < td align = "right" > '.round(($quiz_avg_score/$count_students),2).' %< / td > < / tr > ';
echo '< tr > < td > '.$quiz['title'].'< / td > < td align = "right" > '.round(($quiz_avg_score / $count_students), 2).'%'.' < / td > < / tr > ';
if ($export_csv) {
$temp = array($quiz['title'], $quiz_avg_score);
$csv_content[] = $temp;
@ -287,7 +285,7 @@ if($_GET['studentlist'] == 'false') {
} else {
echo '< tr > < td > '.get_lang('NoExercises').'< / td > < / tr > ';
if ($export_csv) {
$temp=array(get_lang('NoExercises'),'');
$temp = array(get_lang('NoExercises', '' ), '');
$csv_content[] = $temp;
}
}
@ -309,9 +307,9 @@ if($_GET['studentlist'] == 'false') {
$count_number_of_threads_by_course = Tracking :: count_number_of_threads_by_course($_course['id']);
if ($export_csv) {
$csv_content[] = array(get_lang('Forum'), '');
$csv_content[] = array(get_lang('ForumForumsNumber'),$count_number_of_forums_by_course);
$csv_content[] = array(get_lang('ForumThreadsNumber'),$count_number_of_threads_by_course);
$csv_content[] = array(get_lang('ForumPostsNumber'),$count_number_of_posts_by_course);
$csv_content[] = array(get_lang('ForumForumsNumber', '' ), $count_number_of_forums_by_course);
$csv_content[] = array(get_lang('ForumThreadsNumber', '' ), $count_number_of_threads_by_course);
$csv_content[] = array(get_lang('ForumPostsNumber', '' ), $count_number_of_posts_by_course);
}
echo '< tr > < td > '.get_lang('ForumForumsNumber').'< / td > < td align = "right" > '.$count_number_of_forums_by_course.'< / td > < / tr > ';
echo '< tr > < td > '.get_lang('ForumThreadsNumber').'< / td > < td align = "right" > '.$count_number_of_threads_by_course.'< / td > < / tr > ';
@ -330,15 +328,14 @@ if($_GET['studentlist'] == 'false') {
< table class = "data_table" > ';
$chat_connections_during_last_x_days_by_course = Tracking :: chat_connections_during_last_x_days_by_course($_course['id'], 7);
if ($export_csv) {
$csv_content[] = array(get_lang('Chat'),'');
$csv_content[] = array(sprintf(get_lang('ChatConnectionsDuringLastXDays'),'7'),$chat_connections_during_last_x_days_by_course);
$csv_content[] = array(get_lang('Chat', '' ), '');
$csv_content[] = array(sprintf(get_lang('ChatConnectionsDuringLastXDays', '' ), '7'), $chat_connections_during_last_x_days_by_course);
}
echo '< tr > < td > '.sprintf(get_lang('ChatConnectionsDuringLastXDays'), '7').'< / td > < td align = "right" > '.$chat_connections_during_last_x_days_by_course.'< / td > < / tr > ';
echo '< / table > < / div > ';
echo '< div class = "clear" > < / div > ';
/**********************
* TOOLS
**********************/
@ -368,20 +365,17 @@ if($_GET['studentlist'] == 'false') {
< td align = "right" > '.$row['count_access_tool'].' '.get_lang('Clicks').'< / td >
< / tr > ';
if ($export_csv) {
$temp=array(get_lang(ucfirst($row['access_tool'])),$row['count_access_tool'].' '.get_lang('Clicks'));
$temp = array(get_lang(ucfirst($row['access_tool']), '' ), $row['count_access_tool'].' '.get_lang('Clicks', ' '));
$csv_content[] = $temp;
}
}
echo '< / table > < / div > ';
echo '< div class = "clear" > < / div > ';
/***************************
* DOCUMENTS
***************************/
if ($_GET['num'] == 0 or empty($_GET['num'])) {
$num = 3;
$link = ' - < a href = "'.api_get_self().'?'.api_get_cidreq().'&studentlist=false&num=1#ancle" > '.get_lang('SeeDetail').'< / a > ';
@ -390,14 +384,12 @@ if($_GET['studentlist'] == 'false') {
$link = ' - < a href = "'.api_get_self().'?'.api_get_cidreq().'&studentlist=false&num=0#ancle" > '.get_lang('ViewMinus').'< / a > ';
}
echo '< a name = "ancle" id = "a" > < / a > < div class = "report_section" >
< h4 >
< img src = "../img/documents.gif" align = "absbottom" > '.get_lang('DocumentsMostDownloaded').$link.'
< / h4 >
< table class = "data_table" > ';
$sql = "SELECT down_doc_path, COUNT(DISTINCT down_user_id), COUNT(down_doc_path) as count_down
FROM $TABLETRACK_DOWNLOADS
WHERE down_cours_id = '$_cid'
@ -407,7 +399,7 @@ if($_GET['studentlist'] == 'false') {
$rs = api_sql_query($sql, __FILE__, __LINE__);
if ($export_csv) {
$temp=array(get_lang('DocumentsMostDownloaded'),'');
$temp = array(get_lang('DocumentsMostDownloaded', '' ), '');
$csv_content[] = array('', '');
$csv_content[] = $temp;
}
@ -418,16 +410,15 @@ if($_GET['studentlist'] == 'false') {
< td > '.$row['down_doc_path'].'< / td >
< td align = "right" > '.$row['count_down'].' '.get_lang('Clicks').'< / td >
< / tr > ';
if ($export_csv) {
$temp=array($row['down_doc_path'],$row['count_down'].' '.get_lang('Clicks'));
$temp = array($row['down_doc_path'], $row['count_down'].' '.get_lang('Clicks', ' '));
$csv_content[] = $temp;
}
}
} else {
echo '< tr > < td > '.get_lang('NoDocumentDownloaded').'< / td > < / tr > ';
if ($export_csv) {
$temp=array(get_lang('NoDocumentDownloaded'),'');
$temp = array(get_lang('NoDocumentDownloaded', ' '),'');
$csv_content[] = $temp;
}
}
@ -435,11 +426,9 @@ if($_GET['studentlist'] == 'false') {
echo '< div class = "clear" > < / div > ';
/***************************
* LINKS
***************************/
echo '< div class = "report_section" >
< h4 >
< img src = "../img/link.gif" align = "absbottom" > '.get_lang('LinksMostClicked').'
@ -468,7 +457,7 @@ if($_GET['studentlist'] == 'false') {
< td align = "right" > '.$row['count_visits'].' '.get_lang('Clicks').'< / td >
< / tr > ';
if ($export_csv){
$temp=array($row['title'],$row['count_visits'].' '.get_lang('Clicks'));
$temp = array($row['title'],$row['count_visits'].' '.get_lang('Clicks', ' '));
$csv_content[] = $temp;
}
}
@ -516,15 +505,26 @@ if($_GET['studentlist'] == 'false') {
$form -> display();
// END : form to remind inactives susers
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_column']) ? $_GET['tracking_column'] : 0;
$tracking_column = isset($_GET['tracking_column']) ? $_GET['tracking_column'] : ($is_western_name_order xor $sort_by_first_name) ? 2 : 1 ;
$tracking_direction = isset($_GET['tracking_direction']) ? $_GET['tracking_direction'] : 'DESC';
if (count($a_students) > 0) {
$table = new SortableTable('tracking', 'count_student_in_course');
$table -> set_header(0, get_lang('OfficialCode'), false, 'align="center"');
$table = new SortableTable('tracking', 'count_student_in_course', null, ($is_western_name_order xor $sort_by_first_name) ? 2 : 1);
$table -> set_header(0, get_lang('OfficialCode'), true, 'align="center"');
if ($is_western_name_order) {
$table -> set_header(1, get_lang('FirstName'), true, 'align="center"');
$table -> set_header(2, get_lang('LastName'), true, 'align="center"');
} else {
$table -> set_header(1, get_lang('LastName'), true, 'align="center"');
$table -> set_header(2, get_lang('FirstName'), false, 'align="center"');
$table -> set_header(2, get_lang('FirstName'), true, 'align="center"');
}
$table -> set_header(3, get_lang('TrainingTime'), false);
$table -> set_header(4, get_lang('CourseProgress'), false);
$table -> set_header(5, get_lang('Score'), false);
@ -549,8 +549,13 @@ if($_GET['studentlist'] == 'false') {
$row = array();
$row[] = $student_datas['official_code'];
if ($is_western_name_order) {
$row[] = $student_datas['firstname'];
$row[] = $student_datas['lastname'];
} else {
$row[] = $student_datas['lastname'];
$row[] = $student_datas['firstname'];
}
$row[] = api_time_to_hms($avg_time_spent);
if (is_null($avg_student_score)) {$avg_student_score=0;}
if (is_null($avg_student_progress)) {$avg_student_progress=0;}
@ -572,7 +577,6 @@ if($_GET['studentlist'] == 'false') {
$row[] = '< center > < a href = "../mySpace/myStudents.php?student='.$student_id.'&details=true&course='.$course_code.'&origin=tracking_course'.$from.'" > < img src = "'.api_get_path(WEB_IMG_PATH).'2rightarrow.gif" border = "0" / > < / a > < / center > ';
$all_datas[] = $row;
}
usort($all_datas, 'sort_users');
@ -600,23 +604,37 @@ if($_GET['studentlist'] == 'false') {
// send the csv file if asked
if ($export_csv) {
if ($is_western_name_order) {
$csv_headers = array (
get_lang('OfficialCode'),
get_lang('LastName '),
get_lang('FirstName '),
get_lang('TrainingTime'),
get_lang('CourseProgress'),
get_lang('Score'),
get_lang('Student_publication'),
get_lang('Messages'),
get_lang('FirstLogin'),
get_lang('LatestLogin')
get_lang('OfficialCode', ' '),
get_lang('FirstName', ' '),
get_lang('LastName', ' '),
get_lang('TrainingTime', ' '),
get_lang('CourseProgress', ' '),
get_lang('Score', ' '),
get_lang('Student_publication', ' '),
get_lang('Messages', ' '),
get_lang('FirstLogin', ' '),
get_lang('LatestLogin', ' ')
);
} else {
$csv_headers = array (
get_lang('OfficialCode', ''),
get_lang('LastName', ''),
get_lang('FirstName', ''),
get_lang('TrainingTime', ''),
get_lang('CourseProgress', ''),
get_lang('Score', ''),
get_lang('Student_publication', ''),
get_lang('Messages', ''),
get_lang('FirstLogin', ''),
get_lang('LatestLogin', '')
);
}
ob_end_clean();
array_unshift($csv_content, $csv_headers); // adding headers before the content
Export :: export_table_csv($csv_content, 'reporting_student_list');
}
}
?>
< / table >