Minor - format code

1.9.x
Julio Montoya 10 years ago
parent ce6b08ab5e
commit 470c12d0dc
  1. 2
      main/exercice/exercise_result.php
  2. 6
      main/exercice/exercise_show.php
  3. 6
      main/exercice/exercise_submit.php
  4. 15
      main/inc/lib/tracking.lib.php
  5. 146
      main/mySpace/myStudents.php

@ -176,7 +176,7 @@ if ($origin != 'learnpath') {
Display::display_footer(); Display::display_footer();
} else { } else {
$lp_mode = $_SESSION['lp_mode']; $lp_mode = isset($_SESSION['lp_mode']) ? $_SESSION['lp_mode'] : null;
$url = '../newscorm/lp_controller.php?cidReq='.api_get_course_id().'&action=view&lp_id='.$learnpath_id.'&lp_item_id='.$learnpath_item_id.'&exeId='.$exercise_stat_info['exe_id'].'&fb_type='.$objExercise->feedback_type; $url = '../newscorm/lp_controller.php?cidReq='.api_get_course_id().'&action=view&lp_id='.$learnpath_id.'&lp_item_id='.$learnpath_item_id.'&exeId='.$exercise_stat_info['exe_id'].'&fb_type='.$objExercise->feedback_type;
$href = ($lp_mode == 'fullscreen')?' window.opener.location.href="'.$url.'" ':' top.location.href="'.$url.'"'; $href = ($lp_mode == 'fullscreen')?' window.opener.location.href="'.$url.'" ':' top.location.href="'.$url.'"';

@ -62,7 +62,11 @@ if (empty($id)) {
api_not_allowed(true); api_not_allowed(true);
} }
if (api_is_course_session_coach(api_get_user_id(), api_get_course_id(), api_get_session_id())) { if (api_is_course_session_coach(
api_get_user_id(),
api_get_course_id(),
api_get_session_id()
)) {
if (!api_coach_can_edit_view_results(api_get_course_id(), api_get_session_id())) { if (!api_coach_can_edit_view_results(api_get_course_id(), api_get_session_id())) {
api_not_allowed(true); api_not_allowed(true);
} }

@ -648,7 +648,11 @@ if (api_is_course_admin() && $origin != 'learnpath') {
echo '</div>'; echo '</div>';
} }
$is_visible_return = $objExercise->is_visible($learnpath_id, $learnpath_item_id, $learnpath_item_view_id); $is_visible_return = $objExercise->is_visible(
$learnpath_id,
$learnpath_item_id,
$learnpath_item_view_id
);
if ($is_visible_return['value'] == false) { if ($is_visible_return['value'] == false) {
echo $is_visible_return['message']; echo $is_visible_return['message'];
if ($origin != 'learnpath') { if ($origin != 'learnpath') {

@ -2102,7 +2102,7 @@ class Tracking
$lp_list = $use_max_score = array(); $lp_list = $use_max_score = array();
while ($row_lp = Database::fetch_array($res_row_lp)) { while ($row_lp = Database::fetch_array($res_row_lp)) {
$lp_list[] = $row_lp['id']; $lp_list[] = $row_lp['id'];
$use_max_score[$row_lp['id']] = $row_lp['use_max_score']; $use_max_score[$row_lp['id']] = $row_lp['use_max_score'];
} }
if ($debug) { if ($debug) {
@ -2129,6 +2129,7 @@ class Tracking
session_id = $session_id session_id = $session_id
GROUP BY lp_id, user_id"; GROUP BY lp_id, user_id";
if ($debug) echo $sql; if ($debug) echo $sql;
$rs_last_lp_view_id = Database::query($sql); $rs_last_lp_view_id = Database::query($sql);
$global_result = 0; $global_result = 0;
@ -2201,7 +2202,6 @@ class Tracking
(lp_i.item_type='sco' OR lp_i.item_type='".TOOL_QUIZ."') (lp_i.item_type='sco' OR lp_i.item_type='".TOOL_QUIZ."')
WHERE lp_view_id = $lp_view_id "; WHERE lp_view_id = $lp_view_id ";
if ($debug) echo $sql.'<br />'; if ($debug) echo $sql.'<br />';
$res_max_score = Database::query($sql); $res_max_score = Database::query($sql);
while ($row_max_score = Database::fetch_array($res_max_score,'ASSOC')) { while ($row_max_score = Database::fetch_array($res_max_score,'ASSOC')) {
@ -2243,11 +2243,11 @@ class Tracking
if ($debug) echo '<b>$lp_partial_total, $score, $max_score '.$lp_partial_total.' '.$score.' '.$max_score.'</b><br />'; if ($debug) echo '<b>$lp_partial_total, $score, $max_score '.$lp_partial_total.' '.$score.' '.$max_score.'</b><br />';
} else { } else {
// Case of a TOOL_QUIZ element // Case of a TOOL_QUIZ element
$item_id = $row_max_score['iid']; $item_id = $row_max_score['iid'];
$item_path = $row_max_score['path']; $item_path = $row_max_score['path'];
$lp_item_view_id = $row_max_score['lp_item_view_id']; $lp_item_view_id = $row_max_score['lp_item_view_id'];
// Get last attempt to this exercise through // Get last attempt to this exercise through
// the current lp for the current user // the current lp for the current user
$sql = "SELECT exe_id $sql = "SELECT exe_id
FROM $tbl_stats_exercices FROM $tbl_stats_exercices
@ -2258,7 +2258,8 @@ class Tracking
orig_lp_item_view_id = $lp_item_view_id AND orig_lp_item_view_id = $lp_item_view_id AND
exe_cours_id = '$course_code' AND exe_cours_id = '$course_code' AND
session_id = $session_id session_id = $session_id
ORDER BY exe_date DESC LIMIT 1"; ORDER BY exe_date DESC
LIMIT 1";
if ($debug) echo $sql .'<br />'; if ($debug) echo $sql .'<br />';
$result_last_attempt = Database::query($sql); $result_last_attempt = Database::query($sql);
$num = Database :: num_rows($result_last_attempt); $num = Database :: num_rows($result_last_attempt);

@ -4,9 +4,7 @@
* Implements the tracking of students in the Reporting pages * Implements the tracking of students in the Reporting pages
* @package chamilo.reporting * @package chamilo.reporting
*/ */
/**
* Code
*/
// name of the language file that needs to be included // name of the language file that needs to be included
$language_file = array( $language_file = array(
'registration', 'registration',
@ -36,7 +34,10 @@ api_block_anonymous_users();
if (!api_is_allowed_to_create_course() && !api_is_session_admin() && !api_is_drh()) { if (!api_is_allowed_to_create_course() && !api_is_session_admin() && !api_is_drh()) {
// Check if the user is tutor of the course // Check if the user is tutor of the course
$user_course_status = CourseManager::get_tutor_in_course_status(api_get_user_id(), api_get_course_id()); $user_course_status = CourseManager::get_tutor_in_course_status(
api_get_user_id(),
api_get_course_id()
);
if ($user_course_status != 1) { if ($user_course_status != 1) {
api_not_allowed(true); api_not_allowed(true);
} }
@ -85,11 +86,8 @@ if (isset($_GET['details'])) {
} else } else
if (!empty ($_GET['origin']) && $_GET['origin'] == 'tracking_course') { if (!empty ($_GET['origin']) && $_GET['origin'] == 'tracking_course') {
$course_info = CourseManager :: get_course_information($get_course_code); $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 ( $interbreadcrumb[] = array (
"url" => "../tracking/courseLog.php?cidReq=".$get_course_code.'&id_session=' . (empty ($_SESSION['id_session']) ? '' : $_SESSION['id_session']), "url" => "../tracking/courseLog.php?cidReq=".$get_course_code.'&id_session=' . api_get_session_id(),
"name" => get_lang("Tracking") "name" => get_lang("Tracking")
); );
} else } else
@ -173,8 +171,8 @@ if (isset($_GET['details'])) {
} }
// Database Table Definitions // Database Table Definitions
$tbl_course_user = Database :: get_main_table(TABLE_MAIN_COURSE_USER); $tbl_course_user = Database :: get_main_table(TABLE_MAIN_COURSE_USER);
$tbl_stats_exercices = Database :: get_statistic_table(TABLE_STATISTIC_TRACK_E_EXERCICES); $tbl_stats_exercices = Database :: get_statistic_table(TABLE_STATISTIC_TRACK_E_EXERCICES);
if (isset($_GET['user_id']) && $_GET['user_id'] != "") { if (isset($_GET['user_id']) && $_GET['user_id'] != "") {
$user_id = intval($_GET['user_id']); $user_id = intval($_GET['user_id']);
@ -195,15 +193,27 @@ $check = Security::check_token('get');
if ($check) { if ($check) {
switch ($_GET['action']) { switch ($_GET['action']) {
case 'reset_lp' : case 'reset_lp' :
$course = isset($_GET['course']) ? $_GET['course']:""; $course = isset($_GET['course']) ? $_GET['course'] : "";
$lp_id = isset($_GET['lp_id']) ? intval($_GET['lp_id']):""; $lp_id = isset($_GET['lp_id']) ? intval($_GET['lp_id']) : "";
if (api_is_allowed_to_edit() && !empty($course) && !empty($lp_id) && !empty($student_id)) { if (api_is_allowed_to_edit() &&
$course_info = api_get_course_info($course); !empty($course) &&
delete_student_lp_events($student_id, $lp_id, $course_info, $session_id); !empty($lp_id) &&
!empty($student_id)
) {
$course_info = api_get_course_info($course);
delete_student_lp_events(
$student_id,
$lp_id,
$course_info,
$session_id
);
//@todo delete the stats.track_e_exercices records. First implement this http://support.chamilo.org/issues/1334 //@todo delete the stats.track_e_exercices records. First implement this http://support.chamilo.org/issues/1334
$message = Display::return_message(get_lang('LPWasReset'),'success'); $message = Display::return_message(
get_lang('LPWasReset'),
'success'
);
} }
break; break;
default: default:
@ -251,8 +261,11 @@ if (!empty($sessions_coached_by_user)) {
} }
} }
$sql = "SELECT course_code FROM $tbl_course_user $sql = "SELECT course_code
WHERE relation_type <> ".COURSE_RELATION_TYPE_RRHH." AND user_id = ".intval($user_info['user_id']); FROM $tbl_course_user
WHERE
relation_type <> ".COURSE_RELATION_TYPE_RRHH." AND
user_id = ".intval($user_info['user_id']);
$rs = Database::query($sql); $rs = Database::query($sql);
while ($row = Database :: fetch_array($rs)) { while ($row = Database :: fetch_array($rs)) {
@ -266,7 +279,8 @@ while ($row = Database :: fetch_array($rs)) {
} }
// Get the list of sessions where the user is subscribed as student // 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).' $sql = 'SELECT id_session, course_code
FROM '.Database::get_main_table(TABLE_MAIN_SESSION_COURSE_USER).'
WHERE id_user=' . intval($user_info['user_id']); WHERE id_user=' . intval($user_info['user_id']);
$rs = Database::query($sql); $rs = Database::query($sql);
$tmp_sessions = array(); $tmp_sessions = array();
@ -353,9 +367,21 @@ if (!empty($student_id)) {
if (!CourseManager :: is_user_subscribed_in_course($user_info['user_id'], $course_code, true)) { if (!CourseManager :: is_user_subscribed_in_course($user_info['user_id'], $course_code, true)) {
unset($courses[$key]); unset($courses[$key]);
} else { } else {
$avg_student_progress = Tracking::get_avg_student_progress($user_info['user_id'], $course_code, array(), $session_id);
$avg_student_progress = Tracking::get_avg_student_progress(
$user_info['user_id'],
$course_code,
array(),
$session_id
);
//the score inside the Reporting table //the score inside the Reporting table
$avg_student_score = Tracking::get_avg_student_score($user_info['user_id'], $course_code, array(), $session_id); $avg_student_score = Tracking::get_avg_student_score(
$user_info['user_id'],
$course_code,
array(),
$session_id
);
//var_dump($avg_student_score); //var_dump($avg_student_score);
} }
@ -363,7 +389,13 @@ if (!empty($student_id)) {
// time spent on the course // time spent on the course
$time_spent_on_the_course = api_time_to_hms(Tracking :: get_time_spent_on_the_course($user_info['user_id'], $course_code, $session_id)); $time_spent_on_the_course = api_time_to_hms(
Tracking:: get_time_spent_on_the_course(
$user_info['user_id'],
$course_code,
$session_id
)
);
// get information about connections on the platform by student // get information about connections on the platform by student
$first_connection_date = Tracking :: get_first_connection_date($user_info['user_id']); $first_connection_date = Tracking :: get_first_connection_date($user_info['user_id']);
@ -377,7 +409,7 @@ if (!empty($student_id)) {
} }
// cvs informations // cvs informations
$csv_content[] = array ( $csv_content[] = array(
get_lang('Informations', '') get_lang('Informations', '')
); );
$csv_content[] = array ( $csv_content[] = array (
@ -385,26 +417,26 @@ if (!empty($student_id)) {
get_lang('Email', ''), get_lang('Email', ''),
get_lang('Tel', '') get_lang('Tel', '')
); );
$csv_content[] = array ( $csv_content[] = array(
$user_info['complete_name'], $user_info['complete_name'],
$user_info['email'], $user_info['email'],
$user_info['phone'] $user_info['phone']
); );
$csv_content[] = array (); $csv_content[] = array();
// csv tracking // csv tracking
$csv_content[] = array ( $csv_content[] = array(
get_lang('Tracking', '') get_lang('Tracking', '')
); );
$csv_content[] = array ( $csv_content[] = array(
get_lang('FirstLogin', ''), get_lang('FirstLogin', ''),
get_lang('LatestLogin', ''), get_lang('LatestLogin', ''),
get_lang('TimeSpentInTheCourse', ''), get_lang('TimeSpentInTheCourse', ''),
get_lang('Progress', ''), get_lang('Progress', ''),
get_lang('Score', '') get_lang('Score', '')
); );
$csv_content[] = array ( $csv_content[] = array(
strip_tags($first_connection_date), strip_tags($first_connection_date),
strip_tags($last_connection_date), strip_tags($last_connection_date),
$time_spent_on_the_course, $time_spent_on_the_course,
@ -412,7 +444,6 @@ if (!empty($student_id)) {
$avg_student_score $avg_student_score
); );
//Show title //Show title
$info_course = CourseManager :: get_course_information($course_code); $info_course = CourseManager :: get_course_information($course_code);
$coachs_name = ''; $coachs_name = '';
@ -547,11 +578,18 @@ if (!empty($student_id)) {
<td align="left"><?php echo $time_spent_on_the_course ?></td> <td align="left"><?php echo $time_spent_on_the_course ?></td>
</tr> </tr>
<tr> <tr>
<td align="right"><?php echo get_lang('Progress').' '; Display :: display_icon('info3.gif', get_lang('ScormAndLPProgressTotalAverage'), array ('align' => 'absmiddle', 'hspace' => '3px'));?></td> <td align="right">
<?php
echo get_lang('Progress').' ';
Display :: display_icon('info3.gif', get_lang('ScormAndLPProgressTotalAverage'), array ('align' => 'absmiddle', 'hspace' => '3px'));?>
</td>
<td align="left"><?php echo $avg_student_progress.'%' ?></td> <td align="left"><?php echo $avg_student_progress.'%' ?></td>
</tr> </tr>
<tr> <tr>
<td align="right"><?php echo get_lang('Score').' '; Display :: display_icon('info3.gif', get_lang('ScormAndLPTestTotalAverage'), array ('align' => 'absmiddle', 'hspace' => '3px')); ?> <td align="right">
<?php
echo get_lang('Score').' ';
Display :: display_icon('info3.gif', get_lang('ScormAndLPTestTotalAverage'), array ('align' => 'absmiddle', 'hspace' => '3px')); ?>
</td> </td>
<td align="left"><?php if (is_numeric($avg_student_score)) { echo $avg_student_score.'%';} else { echo $avg_student_score ;} ?></td> <td align="left"><?php if (is_numeric($avg_student_score)) { echo $avg_student_score.'%';} else { echo $avg_student_score ;} ?></td>
</tr> </tr>
@ -579,7 +617,6 @@ if (!empty($info_course['title'])) {
$table_title .= ($info_course ? Display::return_icon('course.png', get_lang('Course'), array(), ICON_SIZE_SMALL).' '.$info_course['title'].' ':''); $table_title .= ($info_course ? Display::return_icon('course.png', get_lang('Course'), array(), ICON_SIZE_SMALL).' '.$info_course['title'].' ':'');
} }
echo Display::page_subheader($table_title); echo Display::page_subheader($table_title);
if (empty($_GET['details'])) { if (empty($_GET['details'])) {
@ -761,7 +798,12 @@ if (empty($_GET['details'])) {
$any_result = false; $any_result = false;
// Get progress in lp // Get progress in lp
$progress = Tracking::get_avg_student_progress($student_id, $course_code, array($lp_id), $session_id); $progress = Tracking::get_avg_student_progress(
$student_id,
$course_code,
array($lp_id),
$session_id
);
if ($progress === null) { if ($progress === null) {
$progress = '0%'; $progress = '0%';
@ -770,11 +812,21 @@ if (empty($_GET['details'])) {
} }
// Get time in lp // Get time in lp
$total_time = Tracking::get_time_spent_in_lp($student_id, $course_code, array($lp_id),$session_id); $total_time = Tracking::get_time_spent_in_lp(
$student_id,
$course_code,
array($lp_id),
$session_id
);
if (!empty($total_time)) $any_result = true; if (!empty($total_time)) $any_result = true;
// Get last connection time in lp // Get last connection time in lp
$start_time = Tracking::get_last_connection_time_in_lp($student_id, $course_code, $lp_id, $session_id); $start_time = Tracking::get_last_connection_time_in_lp(
$student_id,
$course_code,
$lp_id,
$session_id
);
if (!empty($start_time)) { if (!empty($start_time)) {
$start_time = api_convert_and_format_date($start_time, DATE_TIME_FORMAT_LONG); $start_time = api_convert_and_format_date($start_time, DATE_TIME_FORMAT_LONG);
@ -784,11 +836,23 @@ if (empty($_GET['details'])) {
if (!empty($total_time)) $any_result = true; if (!empty($total_time)) $any_result = true;
// Quizz in lp // Quiz in lp
$score = Tracking::get_avg_student_score($student_id, $course_code, array($lp_id),$session_id); $score = Tracking::get_avg_student_score(
$student_id,
// Latest exercise results in a LP $course_code,
$score_latest = Tracking :: get_avg_student_score($student_id, $course_code, array($lp_id),$session_id, false, true); array($lp_id),
$session_id
);
// Latest exercise results in a LP
$score_latest = Tracking:: get_avg_student_score(
$student_id,
$course_code,
array($lp_id),
$session_id,
false,
true
);
if ($i % 2 == 0) $css_class = "row_even"; if ($i % 2 == 0) $css_class = "row_even";
else $css_class = "row_odd"; else $css_class = "row_odd";

Loading…
Cancel
Save