<li>Added admin feature to hide tools from all courses - BT#1942</li>
<li>New voice generator tool. Mp3 audio files generation from a text. Mp3 audio files generation from a text. Teachers, students (into his/her user folder) and groups can create and save mp3 audio files from a text through external service support speech synthesis of Google (build and save), Pediaphon (build and save) and vozMe (build and download)(Feature #2497)</li>
<li>jqgrid library added (Feature #340)</li>
<li>Careers and promotions funcionality added Feature #2706</li>
<li>Careers and promotions funcionality added see #2706</li>
<li>Session start date can be left in blank as well as the end date see BT#1911 </li>
<li>Exercises: Question list interface was changed, new drag and drop behaviour added</li>
<li>New Session page added when clicking in the session name in the Course list</li>
<li>Social notifications added in the Social tab</li>
$exercise_where = ' AND te.exe_exo_id = '.$exercise_id.' ';
}
if ($is_allowedToEdit || $is_tutor) {
$user_id_and = '';
if (!empty ($_POST['filter_by_user'])) {
@ -751,11 +758,7 @@ function get_count_exam_results($exercise_id = null) {
if ($_GET['gradebook'] == 'view') {
$exercise_where_query = 'te.exe_exo_id =ce.id AND ';
}
$exercise_id = intval($_GET['exerciseId']);
$exercise_where = '';
if (!empty($exercise_id)) {
$exercise_where = ' AND te.exe_exo_id = '.$exercise_id.' ';
}
//@todo fix to work with COURSE_RELATION_TYPE_RRHH in both queries
@ -791,56 +794,57 @@ function get_count_exam_results($exercise_id = null) {
$sql="SELECT count(*) as count
FROM $TBL_EXERCICES AS ce INNER JOIN $TBL_TRACK_EXERCICES AS te ON (te.exe_exo_id = ce.id) INNER JOIN $TBL_USER AS user ON (user.user_id = exe_user_id)
WHERE te.status != 'incomplete' AND te.exe_cours_id='" . api_get_course_id() . "' $user_id_and $session_id_and AND ce.active <>-1 AND" .
" orig_lp_id = 0 AND orig_lp_item_id = 0 ";
WHERE te.status != 'incomplete' AND te.exe_cours_id='" . api_get_course_id() . "' $user_id_and $session_id_and AND ce.active <>-1 AND orig_lp_id = 0 AND orig_lp_item_id = 0 $exercise_where";
$exercise_where_query = ' te.exe_exo_id =ce.id AND ';
}
$exercise_where = '';
if (!empty($exercise_id)) {
$exercise_where .= ' AND te.exe_exo_id = '.$exercise_id.' ';
}
//@todo fix to work with COURSE_RELATION_TYPE_RRHH in both queries
@ -921,7 +921,7 @@ function get_exam_results_data($from, $number_of_items, $column, $direction) {
"te.exe_weighting as exweight, te.exe_date as exdate, te.exe_id as exid, email as exemail, " .
"te.start_date as col4, steps_counter as exstep, exe_user_id as excruid, te.exe_duration as exduration, ce.results_disabled as exdisabled
FROM $TBL_EXERCICES AS ce INNER JOIN $TBL_TRACK_EXERCICES AS te ON (te.exe_exo_id = ce.id) INNER JOIN $TBL_USER AS user ON (user.user_id = exe_user_id)
WHERE te.status != 'incomplete' AND te.exe_cours_id='" . api_get_course_id() . "' $user_id_and $session_id_and AND ce.active <>-1 AND orig_lp_id = 0 AND orig_lp_item_id = 0 ";
WHERE te.status != 'incomplete' AND te.exe_cours_id='" . api_get_course_id() . "' $user_id_and $session_id_and AND ce.active <>-1 AND orig_lp_id = 0 AND orig_lp_item_id = 0 $exercise_where";
$sql = "SELECT * FROM $TABLETRACK_EXERCICES WHERE status = '' AND exe_cours_id = '$course_code' AND exe_exo_id = '$exercise_id' AND session_id = $session_id AND orig_lp_id =0 AND orig_lp_item_id = 0 ORDER BY exe_id";
@ -720,12 +728,12 @@ function get_all_exercise_results_by_user($user_id, $exercise_id, $course_code,
$sql = "SELECT * FROM $TABLETRACK_EXERCICES WHERE status = '' AND exe_cours_id = '$course_code' AND exe_exo_id = $exercise_id AND session_id = $session_id AND orig_lp_id = 0 AND orig_lp_item_id = 0 AND exe_user_id = $user_id ORDER by exe_id";
@ -746,12 +754,12 @@ function get_all_exercise_event_from_lp($exercise_id, $course_code, $session_id
$sql = "SELECT * FROM $TABLETRACK_EXERCICES WHERE status = '' AND exe_cours_id = '$course_code' AND exe_exo_id = '$exercise_id' AND session_id = $session_id AND orig_lp_id !=0 AND orig_lp_item_id != 0";