1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351 |
- <?php
- // $Id: tracking.lib.php 2007-28-02 15:51:53
- /*
- ==============================================================================
- Dokeos - elearning and course management software
- Copyright (c) 2004-2008 Dokeos SPRL
- Copyright (c) 2003 Ghent University (UGent)
- Copyright (c) 2001 Universite catholique de Louvain (UCL)
- Copyright (c) various contributors
- 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
- Mail: info@dokeos.com
- ==============================================================================
- */
- /**
- ==============================================================================
- * This is the tracking library for Dokeos.
- * Include/require it in your code to use its functionality.
- *
- * @package dokeos.library
- * @author Julio Montoya <gugli100@gmail.com> (Score average fixes)
- ==============================================================================
- */
- class Tracking {
- /**
- * Calculates the time spent on the platform by a user
- * @param integer $user_id the user id
- * @return timestamp $nb_seconds
- */
- function get_time_spent_on_the_platform($user_id) {
- $tbl_track_login = Database :: get_statistic_table(TABLE_STATISTIC_TRACK_E_LOGIN);
- $sql = 'SELECT login_date, logout_date FROM ' . $tbl_track_login . '
- WHERE login_user_id = ' . intval($user_id);
- $rs = Database::query($sql,__FILE__,__LINE__);
- $nb_seconds = 0;
- $wrong_logout_dates = false;
- while ($a_connections = Database::fetch_array($rs)) {
- $s_login_date = $a_connections["login_date"];
- $s_logout_date = $a_connections["logout_date"];
- $i_timestamp_login_date = strtotime($s_login_date);
- $i_timestamp_logout_date = strtotime($s_logout_date);
- if($i_timestamp_logout_date>0)
- {
- $nb_seconds += ($i_timestamp_logout_date - $i_timestamp_login_date);
- }
- else
- { // there are wrong datas in db, then we can't give a wrong time
- $wrong_logout_dates = true;
- }
- }
- if($nb_seconds>0 || !$wrong_logout_dates)
- {
- return $nb_seconds;
- }
- else
- {
- return -1; //-1 means we have wrong datas in the db
- }
- }
- /**
- * Calculates the time spent on the course
- * @param integer $user_id the user id
- * @param string $course_code the course code
- * @return timestamp $nb_seconds
- */
- function get_time_spent_on_the_course($user_id, $course_code) {
- // protect datas
- $user_id = intval($user_id);
- $course_code = addslashes($course_code);
- $tbl_track_course = Database :: get_statistic_table(TABLE_STATISTIC_TRACK_E_COURSE_ACCESS);
- $sql = 'SELECT login_course_date, logout_course_date FROM ' . $tbl_track_course . '
- WHERE user_id = ' . $user_id . '
- AND course_code="' . $course_code . '"';
- $rs = Database::query($sql,__FILE__,__LINE__);
- $nb_seconds = 0;
- while ($a_connections = Database::fetch_array($rs)) {
- $s_login_date = $a_connections["login_course_date"];
- $s_logout_date = $a_connections["logout_course_date"];
- $i_timestamp_login_date = strtotime($s_login_date);
- $i_timestamp_logout_date = strtotime($s_logout_date);
- $nb_seconds += ($i_timestamp_logout_date - $i_timestamp_login_date);
- }
- return $nb_seconds;
- }
- function get_first_connection_date($student_id) {
- $tbl_track_login = Database :: get_statistic_table(TABLE_STATISTIC_TRACK_E_LOGIN);
- $sql = 'SELECT login_date FROM ' . $tbl_track_login . '
- WHERE login_user_id = ' . intval($student_id) . '
- ORDER BY login_date ASC LIMIT 0,1';
- $rs = Database::query($sql,__FILE__,__LINE__);
- if(Database::num_rows($rs)>0)
- {
- if ($first_login_date = Database::result($rs, 0, 0)) {
- return format_locale_date(get_lang('DateFormatLongWithoutDay'), strtotime($first_login_date));
- }
- }
- return false;
- }
- function get_last_connection_date($student_id, $warning_message = false, $return_timestamp = false) {
- $tbl_track_login = Database :: get_statistic_table(TABLE_STATISTIC_TRACK_E_LOGIN);
- $sql = 'SELECT login_date FROM ' . $tbl_track_login . '
- WHERE login_user_id = ' . intval($student_id) . '
- ORDER BY login_date DESC LIMIT 0,1';
- $rs = Database::query($sql,__FILE__,__LINE__);
- if(Database::num_rows($rs)>0)
- {
- if ($last_login_date = Database::result($rs, 0, 0))
- {
- if ($return_timestamp)
- {
- return strtotime($last_login_date);
- }
- else
- {
- if (!$warning_message)
- {
- return format_locale_date(get_lang('DateFormatLongWithoutDay'), strtotime($last_login_date));
- }
- else
- {
- $timestamp = strtotime($last_login_date);
- $currentTimestamp = mktime();
- //If the last connection is > than 7 days, the text is red
- //345600 = 7 days in seconds
- if ($currentTimestamp - $timestamp > 604800)
- {
- return '<span style="color: #F00;">' . format_locale_date(get_lang('DateFormatLongWithoutDay'), strtotime($last_login_date)) . '</span>';
- }
- else
- {
- return format_locale_date(get_lang('DateFormatLongWithoutDay'), strtotime($last_login_date));
- }
- }
- }
- }
- }
- return false;
- }
- function get_first_connection_date_on_the_course($student_id, $course_code) {
- $tbl_track_login = Database :: get_statistic_table(TABLE_STATISTIC_TRACK_E_COURSE_ACCESS);
- $sql = 'SELECT login_course_date FROM ' . $tbl_track_login . '
- WHERE user_id = ' . intval($student_id) . '
- AND course_code = "' . Database::escape_string($course_code) . '"
- ORDER BY login_course_date ASC LIMIT 0,1';
- $rs = Database::query($sql,__FILE__,__LINE__);
- if(Database::num_rows($rs)>0)
- {
- if ($first_login_date = Database::result($rs, 0, 0)) {
- return format_locale_date(get_lang('DateFormatLongWithoutDay'), strtotime($first_login_date));
- }
- }
- return false;
- }
- function get_last_connection_date_on_the_course($student_id, $course_code) {
- $tbl_track_login = Database :: get_statistic_table(TABLE_STATISTIC_TRACK_E_COURSE_ACCESS);
- $sql = 'SELECT login_course_date FROM ' . $tbl_track_login . '
- WHERE user_id = ' . intval($student_id) . '
- AND course_code = "' . Database::escape_string($course_code) . '"
- ORDER BY login_course_date DESC LIMIT 0,1';
- $rs = Database::query($sql,__FILE__,__LINE__);
- if(Database::num_rows($rs)>0)
- {
- if ($last_login_date = Database::result($rs, 0, 0)) {
- $timestamp = strtotime($last_login_date);
- $currentTimestamp = mktime();
- //If the last connection is > than 7 days, the text is red
- //345600 = 7 days in seconds
- if ($currentTimestamp - $timestamp > 604800) {
- return '<span style="color: #F00;">' . format_locale_date(get_lang('DateFormatLongWithoutDay'), strtotime($last_login_date)) . (api_is_allowed_to_edit()?' <a href="'.api_get_path(REL_CODE_PATH).'announcements/announcements.php?action=add&remind_inactive='.$student_id.'" title="'.get_lang('RemindInactiveUser').'"><img align="middle" src="'.api_get_path(WEB_IMG_PATH).'messagebox_warning.gif" /></a>':'').'</span>';
- } else {
- return format_locale_date(get_lang('DateFormatLongWithoutDay'), strtotime($last_login_date));
- }
- }
- }
- return false;
- }
- function count_course_per_student($user_id) {
- $user_id = intval($user_id);
- $tbl_course_rel_user = Database :: get_main_table(TABLE_MAIN_COURSE_USER);
- $tbl_session_course_rel_user = Database :: get_main_table(TABLE_MAIN_SESSION_COURSE_USER);
- $sql = 'SELECT DISTINCT course_code
- FROM ' . $tbl_course_rel_user . '
- WHERE user_id = ' . $user_id;
- $rs = Database::query($sql, __FILE__, __LINE__);
- $nb_courses = Database::num_rows($rs);
- $sql = 'SELECT DISTINCT course_code
- FROM ' . $tbl_session_course_rel_user . '
- WHERE id_user = ' . $user_id;
- $rs = Database::query($sql, __FILE__, __LINE__);
- $nb_courses += Database::num_rows($rs);
- return $nb_courses;
- }
- /**
- * This function gets the score average from all tests in a course by student
- * @param int $student_id - User id
- * @param string $course_code - Course id
- * @return string value (number %) Which represents a round integer about the score average.
- */
- function get_avg_student_exercise_score($student_id, $course_code) {
- // protect datas
- $student_id = Database::escape_string($student_id);
- $course_code = Database::escape_string($course_code);
- // get the informations of the course
- $a_course = CourseManager :: get_course_information($course_code);
- if(!empty($a_course['db_name']))
- {
- // table definition
- $tbl_course_quiz = Database::get_course_table(TABLE_QUIZ_TEST,$a_course['db_name']);
- $tbl_stats_exercise = Database :: get_statistic_table(TABLE_STATISTIC_TRACK_E_EXERCICES);
- //get the list of exercises
- $sql = "SELECT id, title FROM $tbl_course_quiz WHERE active <> -1";
- $rs = Database::query($sql, __FILE__, __LINE__);
- $count_exe = Database::num_rows($rs);
- if ($count_exe > 0) {
- $quiz_avg_total_score = 0;
- while($quiz = Database::fetch_array($rs)) {
- // get the score and max score from track_e_exercise
- $sql = 'SELECT exe_result , exe_weighting
- FROM '.$tbl_stats_exercise.'
- WHERE exe_exo_id = '.(int)$quiz['id'].'
- AND exe_user_id = '.(int)$student_id.'
- AND orig_lp_id = 0
- AND exe_cours_id = "'.Database::escape_string($course_code).'"
- AND orig_lp_item_id = 0
- ORDER BY exe_date DESC';
- $rsAttempt = Database::query($sql, __FILE__, __LINE__);
- $nb_attempts = 0;
- $quiz_avg_score = 0;
- while ($attempt = Database::fetch_array($rsAttempt)) {
- $nb_attempts++;
- $exe_weight=$attempt['exe_weighting'];
- if ($exe_weight >0) {
- $quiz_avg_score += round(($attempt['exe_result']/$exe_weight*100),2);
- }
- }
- if($nb_attempts>0) {
- $quiz_avg_score = $quiz_avg_score / $nb_attempts;
- }
- $quiz_avg_total_score += $quiz_avg_score;
- }
- return $quiz_avg_total_score/$count_exe;
- }
- }
- else
- {
- return null;
- }
- }
- function get_avg_student_progress($student_id, $course_code) {
- require_once (api_get_path(LIBRARY_PATH) . 'course.lib.php');
- // protect datas
- $student_id = intval($student_id);
- $course_code = addslashes($course_code);
- // get the informations of the course
- $a_course = CourseManager :: get_course_information($course_code);
- if(!empty($a_course['db_name']))
- {
- // table definition
- $tbl_course_lp_view = Database :: get_course_table(TABLE_LP_VIEW, $a_course['db_name']);
- $tbl_course_lp_view_item = Database :: get_course_table(TABLE_LP_ITEM_VIEW, $a_course['db_name']);
- $tbl_course_lp_item = Database :: get_course_table(TABLE_LP_ITEM, $a_course['db_name']);
- $tbl_course_lp = Database :: get_course_table(TABLE_LP_MAIN, $a_course['db_name']);
- //get the list of learning paths
- $sql = 'SELECT id FROM ' . $tbl_course_lp;
- $rs = Database::query($sql, __FILE__, __LINE__);
- $nb_lp = Database::num_rows($rs);
- $avg_progress = 0;
- if ($nb_lp > 0) {
- while ($lp = Database :: fetch_array($rs)) {
- // get the progress in learning pathes
- $sqlProgress = "SELECT progress
- FROM " . $tbl_course_lp_view . " AS lp_view
- WHERE lp_view.user_id = " . $student_id . "
- AND lp_view.lp_id = " . $lp['id'] . "
- ";
- $resultItem = Database::query($sqlProgress, __FILE__, __LINE__);
- if(Database::num_rows($resultItem)>0)
- {
- $avg_progress += Database::result($resultItem, 0, 0);
- }
- }
- $avg_progress = round($avg_progress / $nb_lp, 1);
- }
- return $avg_progress;
- }
- else
- {
- return null;
- }
- }
- /**
- * This function gets:
- * 1. The score average from all SCORM Test items in all LP in a course-> All the answers / All the max score.
- * 2. The score average from all Tests (quiz) in all LP in a course-> All the answers / All the max score.
- * 3. And finally it will return the average between 1. and 2.
- * This function does not take the results of a Test out of a LP
- *
- * @param User id
- * @param Course id
- * @param Array limit average to listed lp ids
- * @return string value (number %) Which represents a round integer explain in got in 3.
- */
- function get_avg_student_score($student_id, $course_code, $lp_ids=array()) {
- $course_table = Database :: get_main_table(TABLE_MAIN_COURSE);
- $course_user_table = Database :: get_main_table(TABLE_MAIN_COURSE_USER);
- $table_session_course_user = Database :: get_main_table(TABLE_MAIN_SESSION_COURSE_USER);
- $tbl_stats_exercices = Database :: get_statistic_table(TABLE_STATISTIC_TRACK_E_EXERCICES);
- $tbl_stats_attempts= Database :: get_statistic_table(TABLE_STATISTIC_TRACK_E_ATTEMPT);
- $course = CourseManager :: get_course_information($course_code);
- if (!empty($course['db_name'])) {
- $tbl_quiz_questions= Database :: get_course_table(TABLE_QUIZ_QUESTION,$course['db_name']);
- $lp_table = Database :: get_course_table(TABLE_LP_MAIN,$course['db_name']);
- $lp_item_table = Database :: get_course_table(TABLE_LP_ITEM,$course['db_name']);
- $lp_view_table = Database :: get_course_table(TABLE_LP_VIEW,$course['db_name']);
- $lp_item_view_table = Database :: get_course_table(TABLE_LP_ITEM_VIEW,$course['db_name']);
- $sql_course_lp = 'SELECT id FROM '.$lp_table;
- if(count($lp_ids)!=0) {
- $sql_course_lp.=' WHERE id IN ('.implode(',',$lp_ids).')';
- }
- $sql_result_lp = Database::query($sql_course_lp, __FILE__, __LINE__);
- $lp_scorm_score_total = 0;
- $lp_scorm_weighting_total = 0;
- $lp_scorm_result_score_total = 0;
- $lp_scorm_loop=0;
- $lp_count = 0;
- $progress = 0;
- if(Database::num_rows($sql_result_lp)>0){
- //Scorm test
- while($a_learnpath = Database::fetch_array($sql_result_lp)) {
- //We get the last view id of this LP (with the higher id)
- $sql='SELECT max(id) as id FROM '.$lp_view_table.'
- WHERE lp_id='.$a_learnpath['id'].' AND user_id="'.intval($student_id).'"';
- $rs_last_lp_view_id = Database::query($sql, __FILE__, __LINE__);
- $lp_view_id = Database::result($rs_last_lp_view_id,0,'id'); // THE view
- if ($lp_view_id != '') {
- // we get the progress
- $sql='SELECT progress FROM '.$lp_view_table.' WHERE id="'.$lp_view_id.'"';
- $rs = Database::query($sql, __FILE__, __LINE__);
- $progress = Database::result($rs,0,'progress');
- // item's list of an scorm
- $sql_max_score='SELECT lp_iv.score as score,lp_i.max_score
- FROM '.$lp_item_view_table.' as lp_iv
- INNER JOIN '.$lp_item_table.' as lp_i
- ON lp_i.id = lp_iv.lp_item_id
- AND lp_i.item_type="sco"
- WHERE lp_view_id="'.$lp_view_id.'"';
- //$rs = Database::query($sql, __FILE__, __LINE__);
- //$sql_max_score='SELECT max_score FROM '.$lp_item_view_table.' WHERE lp_view_id="'.$lp_view_id.'" ';
- $res_max_score=Database::query($sql_max_score,__FILE__,__LINE__);
- $count_total_loop=0;
- $num_rows_max_score=Database::num_rows($res_max_score);
- if ($num_rows_max_score==1) {
- while ($row_max_score=Database::fetch_array($res_max_score)) {
- echo $row_max_score['score'].' - '.$row_max_score['max_score'];
- if ($row_max_score['max_score']==0) {
- //when there's no max score, we assume 100 as the max score, as the SCORM 1.2 says that the value should always be between 0 and 100.
- $lp_scorm_result_score_total+=($row_max_score['score']/100);
- $current_value = $row_max_score['score']/100;
- } else {
- $lp_scorm_result_score_total+=($row_max_score['score']/$row_max_score['max_score']);
- $current_value = $row_max_score['score']/$row_max_score['max_score'];
- }
- $count_total_loop++;
- }
- } elseif ($num_rows_max_score > 1) {
- //echo ' ---- <br>';
- while ($row_max_score=Database::fetch_array($res_max_score)) {
- //echo $row_max_score['score'].' - '.$row_max_score['max_score'];
- //echo '<br>';
- if ($row_max_score['max_score']==0) {
- $lp_scorm_result_score_total+=($row_max_score['score']/100);
- $current_value = $row_max_score['score']/100;
- } else {
- //when there's no max score, we assume 100 as the max score, as the SCORM 1.2 says that the value should always be between 0 and 100.
- $lp_scorm_result_score_total+=($row_max_score['score']/$row_max_score['max_score']);
- $current_value = $row_max_score['score']/$row_max_score['max_score'];
- }
- $count_total_loop++;
- }
- }
- if ($num_rows_max_score > 0 && ($progress > 0 || $current_value > 0 )) {
- $lp_count++;
- }
- if ($count_total_loop==0) {
- $count_total_loop=1;
- }
- $score_of_scorm_calculate=round((($lp_scorm_result_score_total/$count_total_loop)*100),2);
- } else {
- $score_of_scorm_calculate = 0;
- }
- }
- //The next call to a MySQL fetch function, such as mysql_fetch_assoc(), would return that row.
- mysql_data_seek($sql_result_lp,0);
- if ($lp_count==0) {
- $lp_count=1;
- }
- if(count($lp_ids)==0 ) {
- $score_of_scorm_calculate=round((($score_of_scorm_calculate/$lp_count)),2);
- }
- $lp_scorm_score_total = $score_of_scorm_calculate;
- //Quizz in a LP
- while($a_learnpath = Database::fetch_array($sql_result_lp)) {
- //we got the maxscore this is wrong
- /*
- echo $sql = 'SELECT id as item_id, max_score
- FROM '.$lp_item_table.' AS lp_item
- WHERE lp_id='.$a_learnpath['id'].'
- AND item_type="quiz"';
- */
- //Path is the exercise id
- $sql = 'SELECT path, id as item_id, max_score
- FROM '.$lp_item_table.' AS lp_item
- WHERE lp_id='.$a_learnpath['id'].'
- AND item_type="quiz"';
- $rsItems = Database::query($sql, __FILE__, __LINE__);
- //We get the last view id of this LP
- $sql = "SELECT id FROM $lp_view_table WHERE user_id = '".intval($student_id)."' and lp_id='".intval($a_learnpath['id'])."'";
- //$sql='SELECT max(id) as id FROM '.$lp_view_table.' WHERE lp_id='.$a_learnpath['id'].' AND user_id="'.intval($student_id).'"';
- $rs_last_lp_view_id = Database::query($sql, __FILE__, __LINE__);
- $lp_view_id = intval(Database::result($rs_last_lp_view_id,0,'id'));
- $total_score = $total_weighting = 0;
- if ($lp_view_id!=0) {
- while ($item = Database :: fetch_array($rsItems, 'ASSOC')) {
- // we take the score from a LP because we have lp_view_id
- $sql = "SELECT score FROM $lp_item_view_table WHERE lp_item_id = '".(int)$item['item_id']."' and lp_view_id = '".(int)$lp_view_id."'
- ORDER BY view_count DESC limit 1";
- /*$sql = 'SELECT score as student_score
- FROM '.$lp_item_view_table.' as lp_view_item
- WHERE lp_view_item.lp_item_id = '.$item['item_id'].'
- AND lp_view_id = "'.$lp_view_id.'" ';*/
- $rsScores = Database::query($sql, __FILE__, __LINE__);
- // Real max score - this was implemented because of the random exercises
- $sql_last_attempt = 'SELECT exe_id FROM '. $tbl_stats_exercices. ' ' .
- 'WHERE exe_exo_id="' .$item['path']. '" AND exe_user_id="' . $student_id . '" AND orig_lp_id = "'.$a_learnpath['id'].'" AND orig_lp_item_id = "'.$item['item_id'].'" AND exe_cours_id="' . $course_code . '" ORDER BY exe_date DESC limit 1';
- $resultLastAttempt = Database::query($sql_last_attempt, __FILE__, __LINE__);
- $num = Database :: num_rows($resultLastAttempt);
- if ($num > 0){
- if ($num > 1){
- while ($rowLA = Database :: fetch_row($resultLastAttempt)) {
- $id_last_attempt = $rowLA[0];
- }
- } else {
- $id_last_attempt = Database :: result($resultLastAttempt, 0, 0);
- }
- }
- $sql = "SELECT SUM(t.ponderation) as maxscore from ( SELECT distinct question_id, marks,ponderation FROM $tbl_stats_attempts as at " .
- "INNER JOIN $tbl_quiz_questions as q on(q.id = at.question_id) where exe_id ='$id_last_attempt' ) as t";
- $result = Database::query($sql, __FILE__, __LINE__);
- $row_max_score = Database :: fetch_array($result);
- $maxscore = $row_max_score['maxscore'];
- if ($maxscore=='') {
- $maxscore = $item['max_score'];
- }
- // not right!
- /*if(Database::num_rows($rsScores)>0) {
- $total_score += Database::result($rsScores, 0, 0);
- //echo $total_weighting += $item['max_score'];
- $total_weighting += $maxscore;
- if($total_weighting>0) {
- //echo ($total_score/$total_weighting)*100;
- $lp_scorm_score_total += ($total_score/$total_weighting)*100;
- $lp_scorm_weighting_total+=100;
- }
- }*/
- if(Database::num_rows($rsScores)>0) {
- $total_score = Database::result($rsScores, 0, 0);
- //echo $total_weighting += $item['max_score'];
- $total_weighting += $maxscore;
- if($total_weighting>0 && $maxscore>0) {
- //echo $total_score.' - '.$maxscore; echo '<br>';
- //echo $lp_scorm_score_total += ($total_score/$total_weighting)*100;
- $lp_scorm_score_total += ($total_score/$maxscore)*100;
- $lp_scorm_weighting_total+=100;
- }
- }
- }
- }
- }
- }
- $totalScore = $lp_scorm_score_total;
- $pourcentageScore = 0;
- if($lp_scorm_weighting_total>0) {
- //i.e 10.52
- $pourcentageScore = round( (($totalScore * 100) / $lp_scorm_weighting_total),2);
- return $pourcentageScore;
- } elseif ($score_of_scorm_calculate>0) {
- //echo '<br>'.$score_of_scorm_calculate;
- return $score_of_scorm_calculate;
- } else {
- return null;
- }
- } else {
- return null;
- }
- }
- /**
- * gets the list of students followed by coach
- * @param integer $coach_id the id of the coach
- * @return Array the list of students
- */
- function get_student_followed_by_coach($coach_id) {
- $coach_id = intval($coach_id);
- $tbl_session_course_user = Database :: get_main_table(TABLE_MAIN_SESSION_COURSE_USER);
- $tbl_session_course = Database :: get_main_table(TABLE_MAIN_SESSION_COURSE);
- $tbl_session = Database :: get_main_table(TABLE_MAIN_SESSION);
- $a_students = array ();
- //////////////////////////////////////////////////////////////
- // At first, courses where $coach_id is coach of the course //
- //////////////////////////////////////////////////////////////
- $sql = 'SELECT id_session, course_code FROM ' . $tbl_session_course . ' WHERE id_coach=' . $coach_id;
- global $_configuration;
- if ($_configuration['multiple_access_urls']==true) {
- $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 = 'SELECT id_session, course_code
- FROM ' . $tbl_session_course . ' session_course INNER JOIN '.$tbl_session_rel_access_url.' session_rel_url
- ON (session_course.id_session=session_rel_url.session_id)
- WHERE id_coach=' . $coach_id.' AND access_url_id = '.$access_url_id;
- }
- }
- $result = Database::query($sql,__FILE__,__LINE__);
- while ($a_courses = Database::fetch_array($result)) {
- $course_code = $a_courses["course_code"];
- $id_session = $a_courses["id_session"];
- $sql = "SELECT distinct srcru.id_user
- FROM $tbl_session_course_user AS srcru
- WHERE course_code='$course_code' AND id_session='$id_session'";
- $rs = Database::query($sql,__FILE__,__LINE__);
- while ($row = Database::fetch_array($rs)) {
- $a_students[$row['id_user']] = $row['id_user'];
- }
- }
- //////////////////////////////////////////////////////////////
- // Then, courses where $coach_id is coach of the session //
- //////////////////////////////////////////////////////////////
- $sql = 'SELECT session_course_user.id_user
- FROM ' . $tbl_session_course_user . ' as session_course_user
- INNER JOIN ' . $tbl_session_course . ' as session_course
- ON session_course.course_code = session_course_user.course_code
- AND session_course_user.id_session = session_course.id_session
- INNER JOIN ' . $tbl_session . ' as session
- ON session.id = session_course.id_session
- AND session.id_coach = ' . $coach_id;
- if ($_configuration['multiple_access_urls']==true) {
- $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 = 'SELECT session_course_user.id_user
- FROM ' . $tbl_session_course_user . ' as session_course_user
- INNER JOIN ' . $tbl_session_course . ' as session_course
- ON session_course.course_code = session_course_user.course_code
- AND session_course_user.id_session = session_course.id_session
- INNER JOIN ' . $tbl_session . ' as session
- ON session.id = session_course.id_session
- AND session.id_coach = ' . $coach_id.'
- INNER JOIN '.$tbl_session_rel_access_url.' session_rel_url
- ON session.id = session_rel_url.session_id WHERE access_url_id = '.$access_url_id;
- }
- }
- $result = Database::query($sql,__FILE__,__LINE__);
- while ($row = Database::fetch_array($result)) {
- $a_students[$row['id_user']] = $row['id_user'];
- }
- return $a_students;
- }
- function get_student_followed_by_coach_in_a_session($id_session, $coach_id) {
- $coach_id = intval($coach_id);
- $tbl_session_course_user = Database :: get_main_table(TABLE_MAIN_SESSION_COURSE_USER);
- $tbl_session_course = Database :: get_main_table(TABLE_MAIN_SESSION_COURSE);
- $tbl_session = Database :: get_main_table(TABLE_MAIN_SESSION);
- $a_students = array ();
- //////////////////////////////////////////////////////////////
- // At first, courses where $coach_id is coach of the course //
- //////////////////////////////////////////////////////////////
- $sql = 'SELECT course_code FROM ' . $tbl_session_course . ' WHERE id_session="' . $id_session . '" AND id_coach=' . $coach_id;
- $result = Database::query($sql,__FILE__,__LINE__);
- while ($a_courses = Database::fetch_array($result)) {
- $course_code = $a_courses["course_code"];
- $sql = "SELECT distinct srcru.id_user
- FROM $tbl_session_course_user AS srcru
- WHERE course_code='$course_code' and id_session = '" . $id_session . "'";
- $rs = Database::query($sql, __FILE__, __LINE__);
- while ($row = Database::fetch_array($rs)) {
- $a_students[$row['id_user']] = $row['id_user'];
- }
- }
- //////////////////////////////////////////////////////////////
- // Then, courses where $coach_id is coach of the session //
- //////////////////////////////////////////////////////////////
- $dsl_session_coach = 'SELECT id_coach FROM ' . $tbl_session . ' WHERE id="' . $id_session . '" AND id_coach="' . $coach_id . '"';
- $result = Database::query($dsl_session_coach, __FILE__, __LINE__);
- //He is the session_coach so we select all the users in the session
- if (Database::num_rows($result) > 0) {
- $sql = 'SELECT DISTINCT srcru.id_user FROM ' . $tbl_session_course_user . ' AS srcru WHERE id_session="' . $id_session . '"';
- $result = Database::query($sql,__FILE__,__LINE__);
- while ($row = Database::fetch_array($result)) {
- $a_students[$row['id_user']] = $row['id_user'];
- }
- }
- return $a_students;
- }
- function is_allowed_to_coach_student($coach_id, $student_id) {
- $coach_id = intval($coach_id);
- $student_id = intval($student_id);
- $tbl_session_course_user = Database :: get_main_table(TABLE_MAIN_SESSION_COURSE_USER);
- $tbl_session_course = Database :: get_main_table(TABLE_MAIN_SESSION_COURSE);
- $tbl_session = Database :: get_main_table(TABLE_MAIN_SESSION);
- //////////////////////////////////////////////////////////////
- // At first, courses where $coach_id is coach of the course //
- //////////////////////////////////////////////////////////////
- $sql = 'SELECT 1
- FROM ' . $tbl_session_course_user . ' AS session_course_user
- INNER JOIN ' . $tbl_session_course . ' AS session_course
- ON session_course.course_code = session_course_user.course_code
- AND id_coach=' . $coach_id . '
- WHERE id_user=' . $student_id;
- $result = Database::query($sql, __FILE__, __LINE__);
- if (Database::num_rows($result) > 0) {
- return true;
- }
- //////////////////////////////////////////////////////////////
- // Then, courses where $coach_id is coach of the session //
- //////////////////////////////////////////////////////////////
- $sql = 'SELECT session_course_user.id_user
- FROM ' . $tbl_session_course_user . ' as session_course_user
- INNER JOIN ' . $tbl_session_course . ' as session_course
- ON session_course.course_code = session_course_user.course_code
- INNER JOIN ' . $tbl_session . ' as session
- ON session.id = session_course.id_session
- AND session.id_coach = ' . $coach_id . '
- WHERE id_user = ' . $student_id;
- $result = Database::query($sql, __FILE__, __LINE__);
- if (Database::num_rows($result) > 0) {
- return true;
- }
- return false;
- }
- function get_courses_followed_by_coach($coach_id, $id_session = '')
- {
- $coach_id = intval($coach_id);
- if (!empty ($id_session))
- $id_session = intval($id_session);
- $tbl_session_course_user = Database :: get_main_table(TABLE_MAIN_SESSION_COURSE_USER);
- $tbl_session_course = Database :: get_main_table(TABLE_MAIN_SESSION_COURSE);
- $tbl_session = Database :: get_main_table(TABLE_MAIN_SESSION);
- $tbl_course = Database :: get_main_table(TABLE_MAIN_COURSE);
- //////////////////////////////////////////////////////////////
- // At first, courses where $coach_id is coach of the course //
- //////////////////////////////////////////////////////////////
- $sql = 'SELECT DISTINCT course_code FROM ' . $tbl_session_course . ' WHERE id_coach=' . $coach_id;
- global $_configuration;
- if ($_configuration['multiple_access_urls']==true) {
- $tbl_course_rel_access_url= Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_COURSE);
- $access_url_id = api_get_current_access_url_id();
- if ($access_url_id != -1){
- $sql = 'SELECT DISTINCT session_course.course_code FROM ' . $tbl_session_course . ' session_course INNER JOIN '.$tbl_course_rel_access_url.' course_rel_url
- ON (session_course.course_code = course_rel_url.course_code)
- WHERE id_coach=' . $coach_id.' AND access_url_id = '.$access_url_id;
- }
- }
- if (!empty ($id_session))
- $sql .= ' AND id_session=' . $id_session;
- $result = Database::query($sql, __FILE__, __LINE__);
- while ($row = Database::fetch_array($result)) {
- $a_courses[$row['course_code']] = $row['course_code'];
- }
- //////////////////////////////////////////////////////////////
- // Then, courses where $coach_id is coach of the session //
- //////////////////////////////////////////////////////////////
- $sql = 'SELECT DISTINCT session_course.course_code
- FROM ' . $tbl_session_course . ' as session_course
- INNER JOIN ' . $tbl_session . ' as session
- ON session.id = session_course.id_session
- AND session.id_coach = ' . $coach_id . '
- INNER JOIN ' . $tbl_course . ' as course
- ON course.code = session_course.course_code';
- if ($_configuration['multiple_access_urls']==true) {
- $tbl_course_rel_access_url= Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_COURSE);
- $access_url_id = api_get_current_access_url_id();
- if ($access_url_id != -1){
- $sql = 'SELECT DISTINCT session_course.course_code
- FROM ' . $tbl_session_course . ' as session_course
- INNER JOIN ' . $tbl_session . ' as session
- ON session.id = session_course.id_session
- AND session.id_coach = ' . $coach_id . '
- INNER JOIN ' . $tbl_course . ' as course
- ON course.code = session_course.course_code
- INNER JOIN '.$tbl_course_rel_access_url.' course_rel_url
- ON (session_course.course_code = course_rel_url.course_code)';
- }
- }
- if (!empty ($id_session)) {
- $sql .= ' WHERE session_course.id_session=' . $id_session;
- if ($_configuration['multiple_access_urls']==true)
- $sql .= ' AND access_url_id = '.$access_url_id;
- } else {
- if ($_configuration['multiple_access_urls']==true)
- $sql .= ' WHERE access_url_id = '.$access_url_id;
- }
- $result = Database::query($sql, __FILE__, __LINE__);
- while ($row = Database::fetch_array($result)) {
- $a_courses[$row['course_code']] = $row['course_code'];
- }
- return $a_courses;
- }
- function get_sessions_coached_by_user($coach_id) {
- // table definition
- $tbl_session = Database :: get_main_table(TABLE_MAIN_SESSION);
- $tbl_session_course = Database :: get_main_table(TABLE_MAIN_SESSION_COURSE);
- // protect datas
- $coach_id = intval($coach_id);
- // session where we are general coach
- $sql = 'SELECT DISTINCT id, name, date_start, date_end
- FROM ' . $tbl_session . '
- WHERE id_coach=' . $coach_id;
- global $_configuration;
- if ($_configuration['multiple_access_urls']==true) {
- $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 = 'SELECT DISTINCT id, name, date_start, date_end
- FROM ' . $tbl_session . ' session INNER JOIN '.$tbl_session_rel_access_url.' session_rel_url
- ON (session.id = session_rel_url.session_id)
- WHERE id_coach=' . $coach_id.' AND access_url_id = '.$access_url_id;
- }
- }
- $rs = Database::query($sql,__FILE__,__LINE__);
- while ($row = Database::fetch_array($rs))
- {
- $a_sessions[$row["id"]] = $row;
- }
- // session where we are coach of a course
- $sql = 'SELECT DISTINCT session.id, session.name, session.date_start, session.date_end
- FROM ' . $tbl_session . ' as session
- INNER JOIN ' . $tbl_session_course . ' as session_course
- ON session.id = session_course.id_session
- AND session_course.id_coach=' . $coach_id;
- global $_configuration;
- if ($_configuration['multiple_access_urls']==true) {
- $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 = 'SELECT DISTINCT session.id, session.name, session.date_start, session.date_end
- FROM ' . $tbl_session . ' as session
- INNER JOIN ' . $tbl_session_course . ' as session_course
- ON session.id = session_course.id_session AND session_course.id_coach=' . $coach_id.'
- INNER JOIN '.$tbl_session_rel_access_url.' session_rel_url
- ON (session.id = session_rel_url.session_id)
- WHERE access_url_id = '.$access_url_id;
- }
- }
- $rs = Database::query($sql,__FILE__,__LINE__);
- while ($row = Database::fetch_array($rs))
- {
- $a_sessions[$row["id"]] = $row;
- }
- if (is_array($a_sessions)) {
- foreach ($a_sessions as & $session) {
- if ($session['date_start'] == '0000-00-00') {
- $session['status'] = get_lang('SessionActive');
- }
- else {
- $date_start = explode('-', $session['date_start']);
- $time_start = mktime(0, 0, 0, $date_start[1], $date_start[2], $date_start[0]);
- $date_end = explode('-', $session['date_end']);
- $time_end = mktime(0, 0, 0, $date_end[1], $date_end[2], $date_end[0]);
- if ($time_start < time() && time() < $time_end) {
- $session['status'] = get_lang('SessionActive');
- }
- else{
- if (time() < $time_start) {
- $session['status'] = get_lang('SessionFuture');
- }
- else{
- if (time() > $time_end) {
- $session['status'] = get_lang('SessionPast');
- }
- }
- }
- }
- }
- }
- return $a_sessions;
- }
- function get_courses_list_from_session($session_id) {
- //protect datas
- $session_id = intval($session_id);
- // table definition
- $tbl_session = Database :: get_main_table(TABLE_MAIN_SESSION);
- $tbl_session_course = Database :: get_main_table(TABLE_MAIN_SESSION_COURSE);
- $sql = 'SELECT DISTINCT course_code, id_coach
- FROM ' . $tbl_session_course . '
- WHERE id_session=' . $session_id;
- $rs = Database::query($sql, __FILE__, __LINE__);
- $a_courses = array ();
- while ($row = Database::fetch_array($rs)) {
- $a_courses[$row['course_code']] = $row;
- }
- return $a_courses;
- }
- function count_student_assignments($student_id, $course_code) {
- require_once (api_get_path(LIBRARY_PATH) . 'course.lib.php');
- // protect datas
- $student_id = intval($student_id);
- $course_code = addslashes($course_code);
- // get the informations of the course
- $a_course = CourseManager :: get_course_information($course_code);
- if(!empty($a_course['db_name']))
- {
- // table definition
- $tbl_item_property = Database :: get_course_table(TABLE_ITEM_PROPERTY, $a_course['db_name']);
- $sql = 'SELECT 1
- FROM ' . $tbl_item_property . '
- WHERE insert_user_id=' . $student_id . '
- AND tool="work"';
- $rs = Database::query($sql, __LINE__, __FILE__);
- return Database::num_rows($rs);
- }
- else
- {
- return null;
- }
- }
- function count_student_messages($student_id, $course_code) {
- require_once (api_get_path(LIBRARY_PATH) . 'course.lib.php');
- // protect datas
- $student_id = intval($student_id);
- $course_code = addslashes($course_code);
- // get the informations of the course
- $a_course = CourseManager :: get_course_information($course_code);
- if(!empty($a_course['db_name']))
- {
- // table definition
- $tbl_messages = Database :: get_course_table(TABLE_FORUM_POST, $a_course['db_name']);
- $sql = 'SELECT 1
- FROM ' . $tbl_messages . '
- WHERE poster_id=' . $student_id;
- $rs = Database::query($sql, __LINE__, __FILE__);
- return Database::num_rows($rs);
- }
- else
- {
- return null;
- }
- }
- /**
- * This function counts the number of post by course
- * @param string $course_code - Course ID
- * @return int the number of post by course
- * @author Christian Fasanando <christian.fasanando@dokeos.com>,
- * @version enero 2009, dokeos 1.8.6
- */
- function count_number_of_posts_by_course($course_code) {
- //protect data
- $course_code = addslashes($course_code);
- // get the informations of the course
- $a_course = CourseManager :: get_course_information($course_code);
- $count = 0;
- if (!empty($a_course['db_name'])) {
- $tbl_posts = Database :: get_course_table(TABLE_FORUM_POST, $a_course['db_name']);
- $sql = "SELECT count(*) FROM $tbl_posts";
- $result = Database::query($sql, __FILE__, __LINE__);
- $row = Database::fetch_row($result);
- $count = $row[0];
- return $count;
- } else {
- return null;
- }
- }
- /**
- * This function counts the number of threads by course
- * @param string $course_code - Course ID
- * @return int the number of threads by course
- * @author Christian Fasanando <christian.fasanando@dokeos.com>,
- * @version enero 2009, dokeos 1.8.6
- */
- function count_number_of_threads_by_course($course_code) {
- //protect data
- $course_code = addslashes($course_code);
- // get the informations of the course
- $a_course = CourseManager :: get_course_information($course_code);
- $count = 0;
- if (!empty($a_course['db_name'])) {
- $tbl_threads = Database :: get_course_table(TABLE_FORUM_THREAD, $a_course['db_name']);
- $sql = "SELECT count(*) FROM $tbl_threads";
- $result = Database::query($sql, __FILE__, __LINE__);
- $row = Database::fetch_row($result);
- $count = $row[0];
- return $count;
- } else {
- return null;
- }
- }
- /**
- * This function counts the number of forums by course
- * @param string $course_code - Course ID
- * @return int the number of forums by course
- * @author Christian Fasanando <christian.fasanando@dokeos.com>,
- * @version enero 2009, dokeos 1.8.6
- */
- function count_number_of_forums_by_course($course_code) {
- //protect data
- $course_code = addslashes($course_code);
- // get the informations of the course
- $a_course = CourseManager :: get_course_information($course_code);
- $count = 0;
- if (!empty($a_course['db_name'])) {
- $tbl_forums = Database :: get_course_table(TABLE_FORUM, $a_course['db_name']);
- $sql = "SELECT count(*) FROM $tbl_forums";
- $result = Database::query($sql, __FILE__, __LINE__);
- $row = Database::fetch_row($result);
- $count = $row[0];
- return $count;
- } else {
- return null;
- }
- }
- /**
- * This function counts the chat last connections by course in x days
- * @param string $course_code - Course ID
- * @param int $last_days - last x days
- * @return int the chat last connections by course in x days
- * @author Christian Fasanando <christian.fasanando@dokeos.com>,
- * @version enero 2009, dokeos 1.8.6
- */
- function chat_connections_during_last_x_days_by_course($course_code,$last_days) {
- //protect data
- $last_days = intval($last_days);
- $course_code = addslashes($course_code);
- // get the informations of the course
- $a_course = CourseManager :: get_course_information($course_code);
- $count = 0;
- if (!empty($a_course['db_name'])) {
- $tbl_stats_access = Database :: get_statistic_table(TABLE_STATISTIC_TRACK_E_ACCESS, $a_course['db_name']);
- $sql = "SELECT count(*) FROM $tbl_stats_access WHERE DATE_SUB(NOW(),INTERVAL $last_days DAY) <= access_date
- AND access_cours_code = '$course_code' AND access_tool='".TOOL_CHAT."'";
- $result = Database::query($sql, __FILE__, __LINE__);
- $row = Database::fetch_row($result);
- $count = $row[0];
- return $count;
- } else {
- return null;
- }
- }
- /**
- * This function gets the last student's connection in chat
- * @param int $student_id - Student ID
- * @param string $course_code - Course ID
- * @return string the last connection
- * @author Christian Fasanando <christian.fasanando@dokeos.com>,
- * @version enero 2009, dokeos 1.8.6
- */
- function chat_last_connection($student_id,$course_code) {
- require_once (api_get_path(LIBRARY_PATH) . 'course.lib.php');
- //protect datas
- $student_id = intval($student_id);
- $course_code = addslashes($course_code);
- // get the informations of the course
- $a_course = CourseManager :: get_course_information($course_code);
- $date_time = '';
- if (!empty($a_course['db_name'])) {
- // table definition
- $tbl_stats_access = Database :: get_statistic_table(TABLE_STATISTIC_TRACK_E_ACCESS, $a_course['db_name']);
- $sql = "SELECT access_date FROM $tbl_stats_access
- WHERE access_tool='".TOOL_CHAT."' AND access_user_id='$student_id' AND access_cours_code = '$course_code' ORDER BY access_date DESC limit 1";
- $rs = Database::query($sql, __LINE__, __FILE__);
- $row = Database::fetch_array($rs);
- $last_connection = $row['access_date'];
- if (!empty($last_connection)) {
- $date_format_long = format_locale_date(get_lang('DateFormatLongWithoutDay'), strtotime($last_connection));
- $time = explode(' ',$last_connection);
- $date_time = $date_format_long.' '.$time[1];
- }
- return $date_time;
- } else {
- return null;
- }
- }
- function count_student_visited_links($student_id, $course_code) {
- // protect datas
- $student_id = intval($student_id);
- $course_code = addslashes($course_code);
- // table definition
- $tbl_stats_links = Database :: get_statistic_table(TABLE_STATISTIC_TRACK_E_LINKS);
- $sql = 'SELECT 1
- FROM ' . $tbl_stats_links . '
- WHERE links_user_id=' . $student_id . '
- AND links_cours_id="' . $course_code . '"';
- $rs = Database::query($sql, __LINE__, __FILE__);
- return Database::num_rows($rs);
- }
- function count_student_downloaded_documents($student_id, $course_code) {
- // protect datas
- $student_id = intval($student_id);
- $course_code = addslashes($course_code);
- // table definition
- $tbl_stats_documents = Database :: get_statistic_table(TABLE_STATISTIC_TRACK_E_DOWNLOADS);
- $sql = 'SELECT 1
- FROM ' . $tbl_stats_documents . '
- WHERE down_user_id=' . $student_id . '
- AND down_cours_id="' . $course_code . '"';
- $rs = Database::query($sql, __LINE__, __FILE__);
- return Database::num_rows($rs);
- }
- function get_course_list_in_session_from_student($user_id, $id_session) {
- $user_id = intval($user_id);
- $id_session = intval($id_session);
- $tbl_session_course_user = Database :: get_main_table(TABLE_MAIN_SESSION_COURSE_USER);
- $sql = 'SELECT course_code FROM ' . $tbl_session_course_user . ' WHERE id_user="' . $user_id . '" AND id_session="' . $id_session . '"';
- $result = Database::query($sql, __LINE__, __FILE__);
- $a_courses = array ();
- while ($row = Database::fetch_array($result)) {
- $a_courses[$row['course_code']] = $row['course_code'];
- }
- return $a_courses;
- }
- function get_inactives_students_in_course($course_code, $since, $session_id=0)
- {
- $tbl_track_login = Database :: get_statistic_table(TABLE_STATISTIC_TRACK_E_COURSE_ACCESS);
- $tbl_session_course_user = Database :: get_main_table(TABLE_MAIN_SESSION_COURSE_USER);
- $inner = '';
- if($session_id!=0)
- {
- $inner = ' INNER JOIN '.$tbl_session_course_user.' session_course_user
- ON stats_login.course_code = session_course_user.course_code
- AND session_course_user.id_session = '.intval($session_id).'
- AND session_course_user.id_user = stats_login.user_id ';
- }
- $sql = 'SELECT user_id, MAX(login_course_date) max_date FROM'.$tbl_track_login.' stats_login'.$inner.'
- GROUP BY user_id
- HAVING DATE_SUB( NOW(), INTERVAL '.$since.' DAY) > max_date ';
- //HAVING DATE_ADD(max_date, INTERVAL '.$since.' DAY) < NOW() ';
- $rs = Database::query($sql,__FILE__,__LINE__);
- $inactive_users = array();
- while($user = Database::fetch_array($rs))
- {
- $inactive_users[] = $user['user_id'];
- }
- return $inactive_users;
- }
- function count_login_per_student($student_id, $course_code) {
- $student_id = intval($student_id);
- $course_code = addslashes($course_code);
- $tbl_course_rel_user = Database::get_statistic_table(TABLE_STATISTIC_TRACK_E_ACCESS);
- $sql = 'SELECT '.$student_id.'
- FROM ' . $tbl_course_rel_user . '
- WHERE access_user_id=' . $student_id . '
- AND access_cours_code="' . $course_code . '"';
- $rs = Database::query($sql, __FILE__, __LINE__);
- $nb_login = Database::num_rows($rs);
- return $nb_login;
- }
- function get_student_followed_by_drh($hr_dept_id) {
- $hr_dept_id = intval($hr_dept_id);
- $a_students = array ();
- $tbl_organism = Database :: get_main_table(TABLE_MAIN_ORGANISM);
- $tbl_user = Database :: get_main_table(TABLE_MAIN_USER);
- $sql = 'SELECT DISTINCT user_id FROM '.$tbl_user.' as user
- WHERE hr_dept_id='.$hr_dept_id;
- $rs = Database::query($sql, __FILE__, __LINE__);
- while($user = Database :: fetch_array($rs))
- {
- $a_students[$user['user_id']] = $user['user_id'];
- }
- return $a_students;
- }
- /**
- * allow get average of test of scorm and lp
- * @author isaac flores paz <florespaz@bidsoftperu.com>
- * @param int the user id
- * @param string the course id
- */
- function get_average_test_scorm_and_lp ($user_id,$course_id) {
- //the score inside the Reporting table
- $course_info=api_get_course_info($course_id);
- $lp_table = Database :: get_course_table(TABLE_LP_MAIN,$course_info['dbName']);
- $lp_view_table = Database :: get_course_table(TABLE_LP_VIEW,$course_info['dbName']);
- $lp_item_view_table = Database :: get_course_table(TABLE_LP_ITEM_VIEW,$course_info['dbName']);
- $lp_item_table = Database :: get_course_table(TABLE_LP_ITEM,$course_info['dbName']);
- $sql_type='SELECT id,lp_type FROM '.$lp_table;
- $rs_type=Database::query($sql_type);
- $average_data=0;
- $count_loop=0;
- while ($row_type=Database::fetch_array($rs_type)) {
- if ($row_type['lp_type']==1) {//lp dokeos
- $sql = "SELECT id FROM $lp_view_table WHERE user_id = '".intval($user_id)."' and lp_id='".$row_type['id']."'";
- $rs_last_lp_view_id = Database::query($sql, __FILE__, __LINE__);
- $lp_view_id = intval(Database::result($rs_last_lp_view_id,0,'id'));
- $sql_list_view='SELECT li.max_score,lv.user_id,liw.score,(liw.score/li.max_score) as sum_data FROM '.$lp_item_table.' li INNER JOIN '.$lp_view_table.' lv
- ON li.lp_id=lv.lp_id INNER JOIN '.$lp_item_view_table.' liw ON liw.lp_item_id=li.id WHERE lv.user_id="'.$user_id.'" AND li.item_type="quiz" AND liw.lp_view_id="'.$lp_view_id.'"';
- $sum=0;
- $tot=0;
- $rs_list_view1=Database::query($sql_list_view,__FILE__,__LINE__);
- while ($row_list_view=Database::fetch_array($rs_list_view1)) {
- $sum=$sum+$row_list_view['sum_data'];
- $tot++;
- }
- if ($tot==0) {
- $tot=1;
- }
- $average_data1=$sum/$tot;
- $sql_list_view='';
- $rs_last_lp_view_id='';
- } elseif ($row_type['lp_type']==2) {//lp scorm
- $sql = "SELECT id FROM $lp_view_table WHERE user_id = '".intval($user_id)."' and lp_id='".$row_type['id']."'";
- $rs_last_lp_view_id = Database::query($sql, __FILE__, __LINE__);
- $lp_view_id = intval(Database::result($rs_last_lp_view_id,0,'id'));
- $sql_list_view='SELECT li.max_score,lv.user_id,liw.score,((liw.score/li.max_score)*100) as sum_data FROM '.$lp_item_table.' li INNER JOIN '.$lp_view_table.' lv
- ON li.lp_id=lv.lp_id INNER JOIN '.$lp_item_view_table.' liw ON liw.lp_item_id=li.id WHERE lv.user_id="'.$user_id.'" AND li.item_type="sco" AND liw.lp_view_id="'.$lp_view_id.'"';
- $tot=0;
- $sum=0;
- $rs_list_view2=Database::query($sql_list_view,__FILE__,__LINE__);
- while ($row_list_view=Database::fetch_array($rs_list_view2)) {
- $sum=$sum+$row_list_view['sum_data'];
- $tot++;
- }
- if ($tot==0) {
- $tot=1;
- }
- $average_data2=$sum/$tot;
- }
- $average_data_sum=$average_data_sum+$average_data1+$average_data2;
- $average_data2=0;
- $average_data1=0;
- $count_loop++;
- }
- if ((int)$count_loop > 0) {
- $avg_student_score = round(($average_data_sum / $count_loop), 2);
- }
- return $avg_student_score;
- }
- }
- ?>
|