Source for file courseLog.php
Documentation is available at courseLog.php
* ==============================================================================
Dokeos - elearning and course management software
Copyright (c) 2004 Dokeos SPRL
Copyright (c) 2003 Ghent University (UGent)
Copyright (c) 2001 Universite catholique de Louvain (UCL)
For a full list of contributors, see "credits.txt".
The full license can be read in "license.txt".
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
See the GNU General Public License for more details.
Contact address: Dokeos, rue du Corbeau, 108, B-1030 Brussels, Belgium
==============================================================================
==============================================================================
* @author Thomas Depraetere
* @author Christophe Gesche
* @author Sebastien Piraux
* @author Toon Keppens (Vi-Host.net)
* @package dokeos.tracking
==============================================================================
==============================================================================
==============================================================================
$pathopen = isset ($_REQUEST['pathopen']) ? $_REQUEST['pathopen'] : null;
// name of the language file that needs to be included
$language_file[] = 'tracking';
$language_file[] = 'scorm';
include('../inc/global.inc.php');
$is_allowedToTrack = $is_courseAdmin || $is_platformAdmin || $is_courseCoach || $is_sessionAdmin;
//includes for SCORM and LP
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(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');
require_once (api_get_path(LIBRARY_PATH). 'export.lib.inc.php');
require_once (api_get_path(LIBRARY_PATH). 'formvalidator/FormValidator.class.php');
$export_csv = isset ($_GET['export']) && $_GET['export'] == 'csv' ? true : false;
if (!empty($_GET['scormcontopen']))
$contopen = (int) $_GET['scormcontopen'];
$sql = "SELECT default_encoding FROM $tbl_lp WHERE id = ". $contopen;
$lp_charset = $row['default_encoding'];
//header('Content-Type: text/html; charset='. $row['default_encoding']);
$htmlHeadXtra[] = "<style type='text/css'>
.secLine {background-color : #E6E6E6;}
.content {padding-left : 15px;padding-right : 15px; }
.specialLink{color : #0000FF;}
<style media='print' type='text/css'>
-----------------------------------------------------------
-----------------------------------------------------------
// regroup table names for maintenance purpose
//$table_scormdata = Database::get_scorm_table(TABLE_SCORM_SCO_DATA);
//$table_scormmain = Database::get_scorm_table(TABLE_SCORM_MAIN);
//$tbl_learnpath_main = Database::get_course_table(TABLE_LEARNPATH_MAIN);
//$tbl_learnpath_item = Database::get_course_table(TABLE_LEARNPATH_ITEM);
//$tbl_learnpath_chapter = Database::get_course_table(TABLE_LEARNPATH_CHAPTER);
$view = (isset ($_REQUEST['view'])? $_REQUEST['view']: '');
include(api_get_path(LIBRARY_PATH). "statsUtils.lib.inc.php");
include("../resourcelinker/resourcelinker.inc.php");
$nbStudents = count($a_students);
* count the number of students in this course (used for SortableTable)
if($_SESSION['tracking_direction'] == 'DESC')
==============================================================================
==============================================================================
if($_GET['studentlist'] == 'false')
echo '<div style="float:left; clear:left">
echo '<div style="float:left; clear:left">
echo '<div style="float:right; clear:right">';
echo ' <a href="#" onclick="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></div>';
echo '<div class="clear"></div>';
if($_GET['studentlist'] == 'false')
/***************************
***************************/
echo "<div class='admin_section'>
<img src='../img/scormbuilder.gif' align='absbottom'> ". get_lang('AverageProgressInLearnpath'). "
<table class='data_table'>";
$list = new LearnpathList($student);
$flat_list = $list->get_flat_list();
$temp= array(get_lang('AverageProgressInLearnpath'),'');
$csv_content[] = array('','');
foreach($flat_list as $lp_id => $lp)
foreach($a_students as $student_id => $student)
// get the progress in learning pathes
$lp_avg_progress = $lp_avg_progress / $nbStudents;
echo '<tr><td>'. $lp['lp_name']. '</td><td align="right">'. round($lp_avg_progress,1). ' %</td></tr>';
$temp= array($lp['lp_name'],$lp_avg_progress);
echo '<tr><td>'. get_lang('NoLearningPath'). '</td></tr>';
$temp= array(get_lang('NoLearningPath'),'');
echo '<div class="clear"></div>';
/***************************
***************************/
echo "<div class='admin_section'>
<img src='../img/quiz.gif' align='absbottom'> ". get_lang('AverageResultsToTheExercices'). " <a href='../exercice/exercice.php?". api_get_cidreq(). "&show=result'>". get_lang('SeeDetail'). "</a>
<table class='data_table'>";
$temp= array(get_lang('AverageProgressInLearnpath'),'');
$csv_content[] = array('','');
// get the progress in learning pathes
$sql = 'SELECT exe_result , exe_weighting
WHERE exe_exo_id = '. $quiz['id']. '
$exe_weight= $attempt['exe_weighting'];
$quiz_avg_score += $attempt['exe_result']/ $exe_weight* 100;
$quiz_avg_score = $quiz_avg_score / $nb_attempts;
echo '<tr><td>'. $quiz['title']. '</td><td align="right">'. round($quiz_avg_score,1). ' %</td></tr>';
$temp= array($quiz['title'],$quiz_avg_score);
echo '<tr><td>'. get_lang('NoExercises'). '</td></tr>';
$temp= array(get_lang('NoExercises'),'');
echo '<div class="clear"></div>';
echo "<div class='admin_section'>
<img src='../img/acces_tool.gif' align='absbottom'> ". get_lang('ToolsMostUsed'). "
<table class='data_table'>";
$sql = "SELECT `access_tool`, COUNT(DISTINCT `access_user_id`),count( `access_tool` ) as count_access_tool
WHERE `access_tool` IS NOT NULL
AND `access_cours_code` = '$_cid'
ORDER BY count_access_tool DESC
$temp= array(get_lang('ToolsMostUsed'),'');
<td align="right">'. $row['count_access_tool']. ' '. get_lang('Clicks'). '</td>
echo '<div class="clear"></div>';
/***************************
***************************/
echo "<div class='admin_section'>
<img src='../img/documents.gif' align='absbottom'> ". get_lang('DocumentsMostDownloaded'). "
<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'
$temp= array(get_lang('DocumentsMostDownloaded'),'');
$csv_content[] = array('','');
<td>'. $row['down_doc_path']. '</td>
<td align="right">'. $row['count_down']. ' '. get_lang('Clicks'). '</td>
$temp= array($row['down_doc_path'],$row['count_down']. ' '. get_lang('Clicks'));
echo '<tr><td>'. get_lang('NoDocumentDownloaded'). '</td></tr>';
$temp= array(get_lang('NoDocumentDownloaded'),'');
echo '<div class="clear"></div>';
/***************************
***************************/
echo "<div class='admin_section'>
<img src='../img/link.gif' align='absbottom'> ". get_lang('LinksMostClicked'). "
<table class='data_table'>";
$sql = "SELECT `cl`.`title`, `cl`.`url`,count(DISTINCT `sl`.`links_user_id`), count(`cl`.`title`) as count_visits
FROM $TABLETRACK_LINKS AS sl, $TABLECOURSE_LINKS AS cl
WHERE `sl`.`links_link_id` = `cl`.`id`
AND `sl`.`links_cours_id` = '$_cid'
GROUP BY `cl`.`title`, `cl`.`url`
ORDER BY count_visits DESC
$temp= array(get_lang('LinksMostClicked'),'');
$csv_content[] = array('','');
<td>'. $row['title']. '</td>
<td align="right">'. $row['count_visits']. ' '. get_lang('Clicks'). '</td>
$temp= array($row['title'],$row['count_visits']. ' '. get_lang('Clicks'));
echo '<tr><td>'. get_lang('NoLinkVisited'). '</td></tr>';
$temp= array(get_lang('NoLinkVisited'),'');
echo '<div class="clear"></div>';
// send the csv file if asked
// else display student list with all the informations
// BEGIN : form to remind inactives susers
$renderer = $form->defaultRenderer();
$renderer->setElementTemplate('<span>{label} {element}</span> <input type="submit" value="'. get_lang('Ok'). '"','since');
$el = $form -> addElement('select','since','<img width="22" align="middle" src="'. api_get_path(WEB_IMG_PATH). 'messagebox_warning.gif" border="0" />'. get_lang('RemindInactivesLearnersSince'),$options);
$form -> addElement('hidden','action','add');
$form -> addElement('hidden','remindallinactives','true');
// END : form to remind inactives susers
$tracking_column = isset ($_GET['tracking_column']) ? $_GET['tracking_column'] : 0;
$tracking_direction = isset ($_GET['tracking_direction']) ? $_GET['tracking_direction'] : 'DESC';
$table = new SortableTable('tracking', 'count_student_in_course');
$table -> set_header(0, get_lang('OfficialCode'), false, 'align="center"');
$table -> set_header(1, get_lang('LastName'), true, 'align="center"');
$table -> set_header(2, get_lang('FirstName'), false, 'align="center"');
$table -> set_header(3, get_lang('Time'),false);
$table -> set_header(4, get_lang('Progress'),false);
$table -> set_header(5, get_lang('Score'),false);
$table -> set_header(6, get_lang('Student_publication'),false);
$table -> set_header(7, get_lang('Messages'),false);
$table -> set_header(8, get_lang('FirstLogin'), false, 'align="center"');
$table -> set_header(9, get_lang('LatestLogin'), false, 'align="center"');
$table -> set_header(10, get_lang('Details'),false);
$course_code = $_course['id'];
foreach($a_students as $student_id => $student)
$avg_time_spent = $avg_student_score = $avg_student_progress = $total_assignments = $total_messages = 0 ;
$row[] = $student_datas['official_code'];
$row[] = $student_datas['lastname'];
$row[] = $student_datas['firstname'];
$row[] = $avg_student_progress. ' %';
$row[] = $avg_student_score. ' %';
$row[] = $total_assignments;
$row[] = $total_messages;
$row[] = '<a href="../mySpace/myStudents.php?student='. $student_id. '&details=true&course='. $course_code. '&origin=tracking_course"><img src="'. api_get_path(WEB_IMG_PATH). '2rightarrow.gif" border="0" /></a>';
usort($all_datas, 'sort_users');
$page = $table->get_pager()->getCurrentPageID();
$all_datas = array_slice($all_datas, ($page- 1)* $table -> per_page, $table -> per_page);
usort($csv_content, 'sort_users');
foreach($all_datas as $row)
$table -> addRow($row,'align="right"');
$table -> setColAttributes(0,array('align'=> 'left'));
$table -> setColAttributes(1,array('align'=> 'left'));
$table -> setColAttributes(2,array('align'=> 'left'));
$table -> setColAttributes(7,array('align'=> 'right'));
$table -> setColAttributes(8,array('align'=> 'center'));
$table -> setColAttributes(9,array('align'=> 'center'));
echo get_lang('NoUsersInCourseTracking');
// send the csv file if asked
|