@@ -207,7 +207,10 @@ discard block |
||
207 | 207 | |
208 | 208 | unset($Courses); |
209 | 209 | ?> |
210 | -<form name="formulaire" method="post" action="<?php echo api_get_self(); ?>?page=<?php echo $page; ?>&id_session=<?php echo $sessionId; ?><?php if(!empty($_GET['add'])) echo '&add=true' ; ?>" style="margin:0px;" <?php if($ajax_search){echo ' onsubmit="valide();"';}?>> |
|
210 | +<form name="formulaire" method="post" action="<?php echo api_get_self(); ?>?page=<?php echo $page; ?>&id_session=<?php echo $sessionId; ?><?php if(!empty($_GET['add'])) { |
|
211 | + echo '&add=true' ; |
|
212 | +} |
|
213 | +?>" style="margin:0px;" <?php if($ajax_search){echo ' onsubmit="valide();"';}?>> |
|
211 | 214 | <legend><?php echo $tool_name.' ('.$session_info['name'].')'; ?></legend> |
212 | 215 | <input type="hidden" name="formSent" value="1" /> |
213 | 216 | |
@@ -230,7 +233,10 @@ discard block |
||
230 | 233 | <div id="ajax_list_courses_multiple"> |
231 | 234 | <select id="origin" name="NoSessionCoursesList[]" multiple="multiple" size="20" class="form-control"> |
232 | 235 | <?php foreach ($nosessionCourses as $enreg) { ?> |
233 | - <option value="<?php echo $enreg['id']; ?>" <?php echo 'title="'.htmlspecialchars($enreg['title'].' ('.$enreg['visual_code'].')',ENT_QUOTES).'"'; if(in_array($enreg['code'],$CourseList)) echo 'selected="selected"'; ?>> |
|
236 | + <option value="<?php echo $enreg['id']; ?>" <?php echo 'title="'.htmlspecialchars($enreg['title'].' ('.$enreg['visual_code'].')',ENT_QUOTES).'"'; if(in_array($enreg['code'],$CourseList)) { |
|
237 | + echo 'selected="selected"'; |
|
238 | +} |
|
239 | +?>> |
|
234 | 240 | <?php echo $enreg['title'].' ('.$enreg['visual_code'].')'; ?> |
235 | 241 | </option> |
236 | 242 | <?php } ?> |
@@ -3342,7 +3342,7 @@ discard block |
||
3342 | 3342 | $html .= '<a class="thumbnail" href="'.$params['link'].'">'; |
3343 | 3343 | $html .= $params['icon']; |
3344 | 3344 | $html .= '</a>'; |
3345 | - }else{ |
|
3345 | + } else{ |
|
3346 | 3346 | $html .= $params['icon']; |
3347 | 3347 | } |
3348 | 3348 | $html .= '</div>'; |
@@ -3423,7 +3423,7 @@ discard block |
||
3423 | 3423 | . Display::returnFontAwesomeIcon('folder-open') . '</a>'; |
3424 | 3424 | $params['document'] .= Display::div('', ['id' => 'document_result_' . $course_info['real_id'] . '_0', 'class' => 'document_preview_container']); |
3425 | 3425 | } |
3426 | - }else{ |
|
3426 | + } else{ |
|
3427 | 3427 | if ($course_info['visibility'] != COURSE_VISIBILITY_CLOSED && $load_dirs) { |
3428 | 3428 | $params['document'] = '<a id="document_preview_' . $course_info['real_id'] . '_0" class="document_preview btn btn-default btn-sm" href="javascript:void(0);">' |
3429 | 3429 | . Display::returnFontAwesomeIcon('folder-open') . '</a>'; |
@@ -3598,7 +3598,7 @@ discard block |
||
3598 | 3598 | if ($showCustomIcon === 'true' && $iconName != 'course.png') { |
3599 | 3599 | $thumbnails = $course_info['course_image']; |
3600 | 3600 | $image = $course_info['course_image_large']; |
3601 | - }else{ |
|
3601 | + } else{ |
|
3602 | 3602 | $image = Display::return_icon('session_default.png', null, null, null,null, true); |
3603 | 3603 | } |
3604 | 3604 | |
@@ -3736,7 +3736,7 @@ discard block |
||
3736 | 3736 | if ($showCustomIcon === 'true' && $iconName != 'course.png') { |
3737 | 3737 | $thumbnails = $course_info['course_image']; |
3738 | 3738 | $image = $course_info['course_image_large']; |
3739 | - }else{ |
|
3739 | + } else{ |
|
3740 | 3740 | $image = Display::return_icon('session_default.png', null, null, null,null, true); |
3741 | 3741 | } |
3742 | 3742 | |
@@ -3998,7 +3998,7 @@ discard block |
||
3998 | 3998 | if ($showCustomIcon === 'true' && $iconName != 'course.png') { |
3999 | 3999 | $thumbnails = $course_info['course_image']; |
4000 | 4000 | $image = $course_info['course_image_large']; |
4001 | - }else{ |
|
4001 | + } else{ |
|
4002 | 4002 | $image = Display::return_icon('session_default.png', null, null, null,null, true); |
4003 | 4003 | } |
4004 | 4004 | $params['thumbnails'] = $thumbnails; |
@@ -9,9 +9,10 @@ |
||
9 | 9 | |
10 | 10 | // actions menu |
11 | 11 | $new_thematic_plan_data = array(); |
12 | -if (!empty($thematic_plan_data)) |
|
13 | -foreach($thematic_plan_data as $thematic_item) { |
|
12 | +if (!empty($thematic_plan_data)) { |
|
13 | + foreach($thematic_plan_data as $thematic_item) { |
|
14 | 14 | $thematic_simple_list[] = $thematic_item['description_type']; |
15 | +} |
|
15 | 16 | $new_thematic_plan_data[$thematic_item['description_type']] = $thematic_item; |
16 | 17 | } |
17 | 18 |
@@ -287,7 +287,10 @@ discard block |
||
287 | 287 | <td width="40%" align="center"> |
288 | 288 | <select name="UserList[]" multiple="multiple" size="20" style="width:300px;"> |
289 | 289 | <?php foreach ($db_users as $user) { ?> |
290 | - <option value="<?php echo $user['user_id']; ?>" <?php if(in_array($user['user_id'],$users)) echo 'selected="selected"'; ?>> |
|
290 | + <option value="<?php echo $user['user_id']; ?>" <?php if(in_array($user['user_id'],$users)) { |
|
291 | + echo 'selected="selected"'; |
|
292 | +} |
|
293 | +?>> |
|
291 | 294 | <?php |
292 | 295 | $userName = api_get_person_name($user['firstname'], $user['lastname']).' ('.$user['username'].')'; |
293 | 296 | if ($showOfficialCode) { |
@@ -308,7 +311,10 @@ discard block |
||
308 | 311 | <td width="40%" align="center"> |
309 | 312 | <select name="CourseList[]" multiple="multiple" size="20" style="width:300px;"> |
310 | 313 | <?php foreach ($db_courses as $course) { ?> |
311 | - <option value="<?php echo $course['code']; ?>" <?php if(in_array($course['code'],$courses)) echo 'selected="selected"'; ?>> |
|
314 | + <option value="<?php echo $course['code']; ?>" <?php if(in_array($course['code'],$courses)) { |
|
315 | + echo 'selected="selected"'; |
|
316 | +} |
|
317 | +?>> |
|
312 | 318 | <?php echo '('.$course['visual_code'].') '.$course['title']; ?> |
313 | 319 | </option> |
314 | 320 | <?php } ?> |
@@ -64,9 +64,10 @@ |
||
64 | 64 | $new_comment = isset($_POST['comment']) ? Database::escape_string(trim($_POST['comment'])) : ''; |
65 | 65 | $new_title = isset($_POST['title']) ? Database::escape_string(trim($_POST['title'])) : ''; |
66 | 66 | |
67 | - if ($new_path && ($new_comment || $new_title)) |
|
68 | - if (($docid = DocumentManager::get_document_id($_course, $new_path))) { |
|
67 | + if ($new_path && ($new_comment || $new_title)) { |
|
68 | + if (($docid = DocumentManager::get_document_id($_course, $new_path))) { |
|
69 | 69 | $table_document = Database::get_course_table(TABLE_DOCUMENT); |
70 | + } |
|
70 | 71 | $ct = ''; |
71 | 72 | if ($new_comment) { |
72 | 73 | $ct .= ", comment='$new_comment'"; |
@@ -679,12 +679,15 @@ discard block |
||
679 | 679 | $option1 = $option2 = $option3 = ''; |
680 | 680 | for ($k = 1; $k <= 100; $k++) { |
681 | 681 | $selected1 = $selected2 = $selected3 = ''; |
682 | - if ($k == $threadhold1[$i]) |
|
683 | - $selected1 = 'selected="selected"'; |
|
684 | - if ($k == $threadhold2[$i]) |
|
685 | - $selected2 = 'selected="selected"'; |
|
686 | - if ($k == $threadhold3[$i]) |
|
687 | - $selected3 = 'selected="selected"'; |
|
682 | + if ($k == $threadhold1[$i]) { |
|
683 | + $selected1 = 'selected="selected"'; |
|
684 | + } |
|
685 | + if ($k == $threadhold2[$i]) { |
|
686 | + $selected2 = 'selected="selected"'; |
|
687 | + } |
|
688 | + if ($k == $threadhold3[$i]) { |
|
689 | + $selected3 = 'selected="selected"'; |
|
690 | + } |
|
688 | 691 | $option1.='<option ' . $selected1 . ' >' . $k . ' % </option>'; |
689 | 692 | $option2.='<option ' . $selected2 . ' >' . $k . ' % </option>'; |
690 | 693 | $option3.='<option ' . $selected3 . '>' . $k . ' %</option>'; |
@@ -731,7 +734,10 @@ discard block |
||
731 | 734 | <div class="checkbox"> |
732 | 735 | <p> |
733 | 736 | <label> |
734 | - <input type="checkbox" class="checkbox" name="<?php echo 'try[' . $i; ?>]" <?php if ($try[$i] == 1) echo'checked'; ?> /> |
|
737 | + <input type="checkbox" class="checkbox" name="<?php echo 'try[' . $i; ?>]" <?php if ($try[$i] == 1) { |
|
738 | + echo'checked'; |
|
739 | +} |
|
740 | +?> /> |
|
735 | 741 | <?php echo get_lang('TryAgain'); ?> |
736 | 742 | </label> |
737 | 743 | </p> |
@@ -784,7 +790,10 @@ discard block |
||
784 | 790 | <div class="checkbox"> |
785 | 791 | <p> |
786 | 792 | <label> |
787 | - <input type="checkbox" class="checkbox" name="<?php echo 'try[' . $i; ?>]" <?php if ($try[$i] == 1) echo'checked'; ?> /> |
|
793 | + <input type="checkbox" class="checkbox" name="<?php echo 'try[' . $i; ?>]" <?php if ($try[$i] == 1) { |
|
794 | + echo'checked'; |
|
795 | +} |
|
796 | +?> /> |
|
788 | 797 | <?php echo get_lang('TryAgain'); ?> |
789 | 798 | </label> |
790 | 799 | </p> |
@@ -823,7 +832,10 @@ discard block |
||
823 | 832 | <th ><?php echo get_lang('OAR'); ?>*</th> |
824 | 833 | <?php if ($objExercise->selectFeedbackType() == EXERCISE_FEEDBACK_TYPE_DIRECT) { ?> |
825 | 834 | <th colspan="2" ><?php echo get_lang('Comment'); ?></th> |
826 | - <th ><?php if ($answerType == HOT_SPOT_DELINEATION) echo get_lang('Scenario'); ?></th> |
|
835 | + <th ><?php if ($answerType == HOT_SPOT_DELINEATION) { |
|
836 | + echo get_lang('Scenario'); |
|
837 | +} |
|
838 | +?></th> |
|
827 | 839 | <?php } else { ?> |
828 | 840 | <th colspan="3" ><?php echo get_lang('Comment'); ?></th> |
829 | 841 | <?php } ?> |
@@ -849,7 +861,10 @@ discard block |
||
849 | 861 | <div class="checkbox"> |
850 | 862 | <p> |
851 | 863 | <label> |
852 | - <input type="checkbox" class="checkbox" name="<?php echo 'try[' . $i; ?>]" <?php if (isset($try[$i]) && $try[$i] == 1) echo'checked'; ?> /> |
|
864 | + <input type="checkbox" class="checkbox" name="<?php echo 'try[' . $i; ?>]" <?php if (isset($try[$i]) && $try[$i] == 1) { |
|
865 | + echo'checked'; |
|
866 | +} |
|
867 | +?> /> |
|
853 | 868 | <?php echo get_lang('TryAgain'); ?> |
854 | 869 | </label> |
855 | 870 | </p> |
@@ -998,7 +1013,10 @@ discard block |
||
998 | 1013 | <div class="checkbox"> |
999 | 1014 | <p> |
1000 | 1015 | <label> |
1001 | - <input type="checkbox" class="checkbox" name="try_noerror" <?php if ($try_noerror == 1) echo'checked'; ?> /> |
|
1016 | + <input type="checkbox" class="checkbox" name="try_noerror" <?php if ($try_noerror == 1) { |
|
1017 | + echo'checked'; |
|
1018 | +} |
|
1019 | +?> /> |
|
1002 | 1020 | <?php echo get_lang('TryAgain'); ?> |
1003 | 1021 | </label> |
1004 | 1022 | </p> |
@@ -1007,8 +1007,9 @@ discard block |
||
1007 | 1007 | $blog_post_actions .= '</a>'; |
1008 | 1008 | } |
1009 | 1009 | |
1010 | - if (api_is_allowed('BLOG_' . $blog_id, 'article_rate')) |
|
1011 | - $rating_select = Blog::display_rating_form('post',$blog_id,$post_id); |
|
1010 | + if (api_is_allowed('BLOG_' . $blog_id, 'article_rate')) { |
|
1011 | + $rating_select = Blog::display_rating_form('post',$blog_id,$post_id); |
|
1012 | + } |
|
1012 | 1013 | |
1013 | 1014 | $blog_post_text=stripslashes($blog_post_text); |
1014 | 1015 | |
@@ -1652,8 +1653,9 @@ discard block |
||
1652 | 1653 | |
1653 | 1654 | $arrPermissions = array(); |
1654 | 1655 | |
1655 | - while ($row = Database::fetch_array($result)) |
|
1656 | - $arrPermissions[] = $row['action']; |
|
1656 | + while ($row = Database::fetch_array($result)) { |
|
1657 | + $arrPermissions[] = $row['action']; |
|
1658 | + } |
|
1657 | 1659 | |
1658 | 1660 | echo '<tr>'; |
1659 | 1661 | echo '<td style="text-align:right; vertical-align:top;">' . get_lang('TaskManager') . ': </td>'; |
@@ -2329,8 +2331,9 @@ discard block |
||
2329 | 2331 | //Handle leap year |
2330 | 2332 | $numberofdays = array (0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31); |
2331 | 2333 | |
2332 | - if(($year % 400 == 0) or ($year % 4 == 0 and $year % 100 <> 0)) |
|
2333 | - $numberofdays[2] = 29; |
|
2334 | + if(($year % 400 == 0) or ($year % 4 == 0 and $year % 100 <> 0)) { |
|
2335 | + $numberofdays[2] = 29; |
|
2336 | + } |
|
2334 | 2337 | |
2335 | 2338 | //Get the first day of the month |
2336 | 2339 | $dayone = getdate(mktime(0, 0, 0, $month, 1, $year)); |
@@ -2360,8 +2363,9 @@ discard block |
||
2360 | 2363 | if( Database::num_rows($result) > 0) { |
2361 | 2364 | while($blog_post = Database::fetch_array($result)) { |
2362 | 2365 | // If the day of this post is not yet in the array, add it. |
2363 | - if (!in_array($blog_post['post_day'], $posts)) |
|
2364 | - $posts[] = $blog_post['post_day']; |
|
2366 | + if (!in_array($blog_post['post_day'], $posts)) { |
|
2367 | + $posts[] = $blog_post['post_day']; |
|
2368 | + } |
|
2365 | 2369 | } |
2366 | 2370 | } |
2367 | 2371 | |
@@ -2400,8 +2404,9 @@ discard block |
||
2400 | 2404 | |
2401 | 2405 | echo "<tr>"; |
2402 | 2406 | |
2403 | - for($ii = 1; $ii < 8; $ii ++) |
|
2404 | - echo "<td class=\"weekdays\">", $DaysShort[$ii % 7], "</td>"; |
|
2407 | + for($ii = 1; $ii < 8; $ii ++) { |
|
2408 | + echo "<td class=\"weekdays\">", $DaysShort[$ii % 7], "</td>"; |
|
2409 | + } |
|
2405 | 2410 | |
2406 | 2411 | echo "</tr>"; |
2407 | 2412 | |
@@ -2411,8 +2416,9 @@ discard block |
||
2411 | 2416 | while ($curday <= $numberofdays[$month]) { |
2412 | 2417 | echo "<tr>"; |
2413 | 2418 | for ($ii = 0; $ii < 7; $ii ++) { |
2414 | - if (($curday == -1) && ($ii == $startdayofweek)) |
|
2415 | - $curday = 1; |
|
2419 | + if (($curday == -1) && ($ii == $startdayofweek)) { |
|
2420 | + $curday = 1; |
|
2421 | + } |
|
2416 | 2422 | |
2417 | 2423 | if (($curday > 0) && ($curday <= $numberofdays[$month])) { |
2418 | 2424 | $bgcolor = $ii < 5 ? $class="class=\"days_week\"" : $class="class=\"days_weekend\""; |
@@ -2426,10 +2432,11 @@ discard block |
||
2426 | 2432 | echo "<td " . $class.">"; |
2427 | 2433 | |
2428 | 2434 | // If there are posts on this day, create a filter link. |
2429 | - if(in_array($curday, $posts)) |
|
2430 | - echo '<a href="blog.php?blog_id=' . $blog_id . '&filter=' . $year . '-' . $month . '-' . $curday . '&month=' . $month . '&year=' . $year . '" title="' . get_lang('ViewPostsOfThisDay') . '">' . $curday . '</a>'; |
|
2431 | - else |
|
2432 | - echo $dayheader; |
|
2435 | + if(in_array($curday, $posts)) { |
|
2436 | + echo '<a href="blog.php?blog_id=' . $blog_id . '&filter=' . $year . '-' . $month . '-' . $curday . '&month=' . $month . '&year=' . $year . '" title="' . get_lang('ViewPostsOfThisDay') . '">' . $curday . '</a>'; |
|
2437 | + } else { |
|
2438 | + echo $dayheader; |
|
2439 | + } |
|
2433 | 2440 | |
2434 | 2441 | if (count($tasks) > 0) { |
2435 | 2442 | if (isset($tasks[$curday]) && is_array($tasks[$curday])) { |
@@ -2444,8 +2451,9 @@ discard block |
||
2444 | 2451 | |
2445 | 2452 | echo "</td>"; |
2446 | 2453 | $curday ++; |
2447 | - } else |
|
2448 | - echo "<td> </td>"; |
|
2454 | + } else { |
|
2455 | + echo "<td> </td>"; |
|
2456 | + } |
|
2449 | 2457 | } |
2450 | 2458 | echo "</tr>"; |
2451 | 2459 | } |
@@ -143,8 +143,9 @@ discard block |
||
143 | 143 | $direction = 'DESC'; |
144 | 144 | } else { |
145 | 145 | $column = intval($column); |
146 | - if (!in_array($direction, array('ASC', 'DESC'))) |
|
147 | - $direction = 'ASC'; |
|
146 | + if (!in_array($direction, array('ASC', 'DESC'))) { |
|
147 | + $direction = 'ASC'; |
|
148 | + } |
|
148 | 149 | } |
149 | 150 | |
150 | 151 | $keyword = Session::read('message_search_keyword'); |
@@ -697,8 +698,9 @@ discard block |
||
697 | 698 | */ |
698 | 699 | public static function update_message($user_id, $message_id) |
699 | 700 | { |
700 | - if ($message_id != strval(intval($message_id)) || $user_id != strval(intval($user_id))) |
|
701 | - return false; |
|
701 | + if ($message_id != strval(intval($message_id)) || $user_id != strval(intval($user_id))) { |
|
702 | + return false; |
|
703 | + } |
|
702 | 704 | |
703 | 705 | $table_message = Database::get_main_table(TABLE_MESSAGE); |
704 | 706 | $sql = "UPDATE $table_message SET msg_status = '0' |
@@ -738,8 +740,9 @@ discard block |
||
738 | 740 | */ |
739 | 741 | public static function get_message_by_user($user_id, $message_id) |
740 | 742 | { |
741 | - if ($message_id != strval(intval($message_id)) || $user_id != strval(intval($user_id))) |
|
742 | - return false; |
|
743 | + if ($message_id != strval(intval($message_id)) || $user_id != strval(intval($user_id))) { |
|
744 | + return false; |
|
745 | + } |
|
743 | 746 | $table_message = Database::get_main_table(TABLE_MESSAGE); |
744 | 747 | $query = "SELECT * FROM $table_message |
745 | 748 | WHERE user_receiver_id=" . intval($user_id) . " AND id='" . intval($message_id) . "'"; |
@@ -864,8 +867,9 @@ discard block |
||
864 | 867 | */ |
865 | 868 | public static function exist_message($user_id, $id) |
866 | 869 | { |
867 | - if ($id != strval(intval($id)) || $user_id != strval(intval($user_id))) |
|
868 | - return false; |
|
870 | + if ($id != strval(intval($id)) || $user_id != strval(intval($user_id))) { |
|
871 | + return false; |
|
872 | + } |
|
869 | 873 | $table_message = Database::get_main_table(TABLE_MESSAGE); |
870 | 874 | $query = "SELECT id FROM $table_message |
871 | 875 | WHERE |
@@ -896,8 +900,9 @@ discard block |
||
896 | 900 | $direction = 'DESC'; |
897 | 901 | } else { |
898 | 902 | $column = intval($column); |
899 | - if (!in_array($direction, array('ASC', 'DESC'))) |
|
900 | - $direction = 'ASC'; |
|
903 | + if (!in_array($direction, array('ASC', 'DESC'))) { |
|
904 | + $direction = 'ASC'; |
|
905 | + } |
|
901 | 906 | } |
902 | 907 | $table_message = Database::get_main_table(TABLE_MESSAGE); |
903 | 908 | $request = api_is_xml_http_request(); |
@@ -107,7 +107,9 @@ discard block |
||
107 | 107 | //Check if the user is registered in the session otherwise we will add it |
108 | 108 | $result = SessionManager::get_users_by_session($new_session_id); |
109 | 109 | if (empty($result) || !in_array($user_id, array_keys($result))) { |
110 | - if ($debug) echo 'User added to the session'; |
|
110 | + if ($debug) { |
|
111 | + echo 'User added to the session'; |
|
112 | + } |
|
111 | 113 | //Registering user to the new session |
112 | 114 | SessionManager::suscribe_users_to_session($new_session_id,array($user_id),false); |
113 | 115 | } |
@@ -142,10 +144,11 @@ discard block |
||
142 | 144 | $list[$row['exe_id']]= $row; |
143 | 145 | } |
144 | 146 | |
145 | - if (!empty($list)) |
|
146 | - foreach ($list as $exe_id =>$data) { |
|
147 | + if (!empty($list)) { |
|
148 | + foreach ($list as $exe_id =>$data) { |
|
147 | 149 | if ($update_database) { |
148 | 150 | $sql = "UPDATE $TABLETRACK_EXERCICES SET session_id = '$new_session_id' WHERE exe_id = $exe_id"; |
151 | + } |
|
149 | 152 | $res = Database::query($sql); |
150 | 153 | $result_message[$TABLETRACK_EXERCICES]++; |
151 | 154 | } else { |
@@ -169,10 +172,11 @@ discard block |
||
169 | 172 | $list[$row['exe_id']]= $row; |
170 | 173 | } |
171 | 174 | |
172 | - if (!empty($list)) |
|
173 | - foreach ($list as $exe_id =>$data) { |
|
175 | + if (!empty($list)) { |
|
176 | + foreach ($list as $exe_id =>$data) { |
|
174 | 177 | if ($update_database) { |
175 | 178 | $sql = "UPDATE $TABLETRACK_EXERCICES SET session_id = '$new_session_id' WHERE exe_id = $exe_id"; |
179 | + } |
|
176 | 180 | $res = Database::query($sql); |
177 | 181 | $result_message[$TABLETRACK_EXERCICES]++; |
178 | 182 | } else { |
@@ -197,10 +201,11 @@ discard block |
||
197 | 201 | $list[$row['course_access_id']] = $row; |
198 | 202 | } |
199 | 203 | |
200 | - if (!empty($list)) |
|
201 | - foreach ($list as $id => $data) { |
|
204 | + if (!empty($list)) { |
|
205 | + foreach ($list as $id => $data) { |
|
202 | 206 | if ($update_database) { |
203 | 207 | $sql = "UPDATE $TBL_TRACK_E_COURSE_ACCESS SET session_id = $new_session_id WHERE course_access_id = $id"; |
208 | + } |
|
204 | 209 | if ($debug) { |
205 | 210 | echo $sql; |
206 | 211 | } |
@@ -219,13 +224,18 @@ discard block |
||
219 | 224 | while($row = Database::fetch_array($res,'ASSOC')) { |
220 | 225 | $list[] = $row['access_id']; |
221 | 226 | } |
222 | - if (!empty($list)) |
|
223 | - foreach ($list as $id) { |
|
227 | + if (!empty($list)) { |
|
228 | + foreach ($list as $id) { |
|
224 | 229 | if ($update_database) { |
225 | 230 | $sql = "UPDATE $TBL_TRACK_E_LAST_ACCESS SET access_session_id = $new_session_id WHERE access_id = $id"; |
226 | - if ($debug) echo $sql; |
|
231 | + } |
|
232 | + if ($debug) { |
|
233 | + echo $sql; |
|
234 | + } |
|
227 | 235 | $res = Database::query($sql); |
228 | - if ($debug) error_log(__FILE__ . ' +' . __LINE__ . ': ' . print_r($res, 1)); |
|
236 | + if ($debug) { |
|
237 | + error_log(__FILE__ . ' +' . __LINE__ . ': ' . print_r($res, 1)); |
|
238 | + } |
|
229 | 239 | $result_message[$TBL_TRACK_E_LAST_ACCESS]++; |
230 | 240 | } |
231 | 241 | } |
@@ -249,13 +259,18 @@ discard block |
||
249 | 259 | } |
250 | 260 | } |
251 | 261 | |
252 | - if (!empty($list)) |
|
253 | - foreach ($list as $id=>$data) { |
|
262 | + if (!empty($list)) { |
|
263 | + foreach ($list as $id=>$data) { |
|
254 | 264 | if ($update_database) { |
255 | 265 | $sql = "UPDATE $TBL_LP_VIEW SET session_id = $new_session_id WHERE c_id = $course_id AND id = $id "; |
256 | - if ($debug) var_dump($sql); |
|
266 | + } |
|
267 | + if ($debug) { |
|
268 | + var_dump($sql); |
|
269 | + } |
|
257 | 270 | $res = Database::query($sql); |
258 | - if ($debug) var_dump($res); |
|
271 | + if ($debug) { |
|
272 | + var_dump($res); |
|
273 | + } |
|
259 | 274 | $result_message[$TBL_LP_VIEW]++; |
260 | 275 | } else { |
261 | 276 | //Getting all information of that lp_item_id |
@@ -282,10 +297,11 @@ discard block |
||
282 | 297 | $list[$row['id']] = $row; |
283 | 298 | } |
284 | 299 | } |
285 | - if (!empty($list)) |
|
286 | - foreach ($list as $id=>$data) { |
|
300 | + if (!empty($list)) { |
|
301 | + foreach ($list as $id=>$data) { |
|
287 | 302 | //Getting all information of that lp_item_id |
288 | 303 | $score = Tracking::get_avg_student_score($user_id, $origin_course_code, array($data['lp_id']), $new_session_id); |
304 | + } |
|
289 | 305 | $progress = Tracking::get_avg_student_progress($user_id, $origin_course_code, array($data['lp_id']), $new_session_id); |
290 | 306 | $result_message_compare['LP_VIEW'][$data['lp_id']] = array('score' => $score, 'progress' =>$progress); |
291 | 307 | } |
@@ -301,9 +317,13 @@ discard block |
||
301 | 317 | $id = $row['ref']; |
302 | 318 | if ($update_database) { |
303 | 319 | $sql = "UPDATE $TBL_AGENDA SET session_id = $new_session_id WHERE c_id = $course_id AND id = $id "; |
304 | - if ($debug) var_dump($sql); |
|
320 | + if ($debug) { |
|
321 | + var_dump($sql); |
|
322 | + } |
|
305 | 323 | $res_update = Database::query($sql); |
306 | - if ($debug) var_dump($res_update); |
|
324 | + if ($debug) { |
|
325 | + var_dump($res_update); |
|
326 | + } |
|
307 | 327 | $result_message['agenda']++; |
308 | 328 | } |
309 | 329 | } |
@@ -315,22 +335,30 @@ discard block |
||
315 | 335 | //echo '<h1>Student publication</h1>'; |
316 | 336 | |
317 | 337 | $sql = "SELECT ref FROM $TBL_ITEM_PROPERTY WHERE tool = 'work' AND insert_user_id = $user_id AND c_id = $course_id"; |
318 | - if ($debug) echo $sql; |
|
338 | + if ($debug) { |
|
339 | + echo $sql; |
|
340 | + } |
|
319 | 341 | $res = Database::query($sql); |
320 | 342 | while($row = Database::fetch_array($res,'ASSOC')) { |
321 | 343 | $id = $row['ref']; |
322 | 344 | $sql = "SELECT * FROM $TBL_STUDENT_PUBLICATION WHERE id = $id AND session_id = $origin_session_id AND c_id = $course_id"; |
323 | - if ($debug) var_dump($sql); |
|
345 | + if ($debug) { |
|
346 | + var_dump($sql); |
|
347 | + } |
|
324 | 348 | $sub_res = Database::query($sql); |
325 | 349 | if (Database::num_rows($sub_res) > 0 ) { |
326 | 350 | $data = Database::fetch_array($sub_res,'ASSOC'); |
327 | - if ($debug) var_dump($data); |
|
351 | + if ($debug) { |
|
352 | + var_dump($data); |
|
353 | + } |
|
328 | 354 | $parent_id = $data['parent_id']; |
329 | 355 | if (isset($data['parent_id']) && !empty($data['parent_id'])) { |
330 | 356 | $sql = "SELECT * FROM $TBL_STUDENT_PUBLICATION WHERE id = $parent_id AND c_id = $course_id"; |
331 | 357 | $select_res = Database::query($sql); |
332 | 358 | $parent_data = Database::fetch_array($select_res,'ASSOC'); |
333 | - if ($debug) var_dump($parent_data); |
|
359 | + if ($debug) { |
|
360 | + var_dump($parent_data); |
|
361 | + } |
|
334 | 362 | |
335 | 363 | $sys_course_path = api_get_path(SYS_COURSE_PATH); |
336 | 364 | $course_dir = $sys_course_path . $course_info['path']; |
@@ -345,7 +373,9 @@ discard block |
||
345 | 373 | $sql = "SELECT * FROM $TBL_STUDENT_PUBLICATION |
346 | 374 | WHERE description like '%$search_this%' AND url LIKE '%$search_this2%' AND session_id = $new_session_id AND c_id = $course_id |
347 | 375 | ORDER BY id desc LIMIT 1"; |
348 | - if ($debug) echo $sql; |
|
376 | + if ($debug) { |
|
377 | + echo $sql; |
|
378 | + } |
|
349 | 379 | $sub_res = Database::query($sql); |
350 | 380 | $num_rows = Database::num_rows($sub_res); |
351 | 381 | |
@@ -389,7 +419,9 @@ discard block |
||
389 | 419 | |
390 | 420 | //Creating student_publication_assignment if exists |
391 | 421 | $sql = "SELECT * FROM $TBL_STUDENT_PUBLICATION_ASSIGNMENT WHERE publication_id = $parent_id AND c_id = $course_id"; |
392 | - if ($debug) var_dump($sql); |
|
422 | + if ($debug) { |
|
423 | + var_dump($sql); |
|
424 | + } |
|
393 | 425 | $rest_select = Database::query($sql); |
394 | 426 | if (Database::num_rows($rest_select) > 0 ) { |
395 | 427 | if ($update_database) { |
@@ -401,7 +433,9 @@ discard block |
||
401 | 433 | add_to_calendar = '".$assignment_data['add_to_calendar']."', |
402 | 434 | enable_qualification = '".$assignment_data['enable_qualification']."', |
403 | 435 | publication_id = '".$new_parent_id."'"; |
404 | - if ($debug) echo $sql_add_publication; |
|
436 | + if ($debug) { |
|
437 | + echo $sql_add_publication; |
|
438 | + } |
|
405 | 439 | $rest_select = Database::query($sql_add_publication); |
406 | 440 | $id = Database::insert_id(); |
407 | 441 | |
@@ -409,11 +443,15 @@ discard block |
||
409 | 443 | "has_properties = '".$id."', |
410 | 444 | view_properties = '1' |
411 | 445 | WHERE id = ".$new_parent_id; |
412 | - if ($debug) echo $sql_update; |
|
446 | + if ($debug) { |
|
447 | + echo $sql_update; |
|
448 | + } |
|
413 | 449 | $rest_update = Database::query($sql_update); |
414 | 450 | |
415 | 451 | |
416 | - if ($debug) var_dump($sql_update); |
|
452 | + if ($debug) { |
|
453 | + var_dump($sql_update); |
|
454 | + } |
|
417 | 455 | $result_message[$TBL_STUDENT_PUBLICATION_ASSIGNMENT]++; |
418 | 456 | } |
419 | 457 | } |
@@ -454,7 +492,9 @@ discard block |
||
454 | 492 | if ($result) { |
455 | 493 | unlink($full_file_name); |
456 | 494 | $sql = "DELETE FROM $TBL_STUDENT_PUBLICATION WHERE id= ".$data['id']; |
457 | - if ($debug) var_dump($sql); |
|
495 | + if ($debug) { |
|
496 | + var_dump($sql); |
|
497 | + } |
|
458 | 498 | $result_delete = Database::query($sql); |
459 | 499 | api_item_property_update($course_info, 'work', $data['id'], 'DocumentDeleted', api_get_user_id()); |
460 | 500 | } |
@@ -470,22 +510,30 @@ discard block |
||
470 | 510 | //10. Dropbox - not neccesary to move categories (no presence of session_id) |
471 | 511 | |
472 | 512 | $sql = "SELECT id FROM $TBL_DROPBOX_FILE WHERE uploader_id = $user_id AND session_id = $origin_session_id AND c_id = $course_id"; |
473 | - if ($debug) var_dump($sql); |
|
513 | + if ($debug) { |
|
514 | + var_dump($sql); |
|
515 | + } |
|
474 | 516 | $res = Database::query($sql); |
475 | 517 | while($row = Database::fetch_array($res,'ASSOC')) { |
476 | 518 | $id = $row['id']; |
477 | 519 | if ($update_database) { |
478 | 520 | $sql = "UPDATE $TBL_DROPBOX_FILE SET session_id = $new_session_id WHERE c_id = $course_id AND id = $id"; |
479 | - if ($debug) var_dump($sql); |
|
521 | + if ($debug) { |
|
522 | + var_dump($sql); |
|
523 | + } |
|
480 | 524 | $res = Database::query($sql); |
481 | - if ($debug) var_dump($res); |
|
525 | + if ($debug) { |
|
526 | + var_dump($res); |
|
527 | + } |
|
482 | 528 | |
483 | 529 | $sql = "UPDATE $TBL_DROPBOX_POST SET session_id = $new_session_id WHERE file_id = $id"; |
484 | - if ($debug) |
|
485 | - var_dump($sql); |
|
530 | + if ($debug) { |
|
531 | + var_dump($sql); |
|
532 | + } |
|
486 | 533 | $res = Database::query($sql); |
487 | - if ($debug) |
|
488 | - var_dump($res); |
|
534 | + if ($debug) { |
|
535 | + var_dump($res); |
|
536 | + } |
|
489 | 537 | $result_message[$TBL_DROPBOX_FILE]++; |
490 | 538 | } |
491 | 539 | } |
@@ -494,23 +542,30 @@ discard block |
||
494 | 542 | |
495 | 543 | $sql = "SELECT notebook_id FROM $TBL_NOTEBOOK |
496 | 544 | WHERE user_id = $user_id AND session_id = $origin_session_id AND course = '$origin_course_code' AND c_id = $course_id"; |
497 | - if ($debug) var_dump($sql); |
|
545 | + if ($debug) { |
|
546 | + var_dump($sql); |
|
547 | + } |
|
498 | 548 | $res = Database::query($sql); |
499 | 549 | while($row = Database::fetch_array($res,'ASSOC')) { |
500 | 550 | $id = $row['notebook_id']; |
501 | 551 | if ($update_database) { |
502 | 552 | $sql = "UPDATE $TBL_NOTEBOOK SET session_id = $new_session_id WHERE c_id = $course_id AND notebook_id = $id"; |
503 | - if ($debug) var_dump($sql); |
|
553 | + if ($debug) { |
|
554 | + var_dump($sql); |
|
555 | + } |
|
504 | 556 | $res = Database::query($sql); |
505 | - if ($debug) var_dump($res); |
|
557 | + if ($debug) { |
|
558 | + var_dump($res); |
|
559 | + } |
|
506 | 560 | } |
507 | 561 | } |
508 | 562 | |
509 | 563 | if ($update_database) { |
510 | 564 | echo '<h2>'.get_lang('StatsMoved').'</h2>'; |
511 | - if (is_array($result_message)) |
|
512 | - foreach ($result_message as $table=>$times) { |
|
565 | + if (is_array($result_message)) { |
|
566 | + foreach ($result_message as $table=>$times) { |
|
513 | 567 | echo 'Table '.$table.' - '.$times.' records updated <br />'; |
568 | + } |
|
514 | 569 | } |
515 | 570 | } else { |
516 | 571 | echo '<h2>'.get_lang('UserInformationOfThisCourse').'</h2>'; |
@@ -626,10 +681,11 @@ discard block |
||
626 | 681 | } |
627 | 682 | $navigation .= ' '; |
628 | 683 | $page ++; |
629 | -if ($page < $nro_pages) |
|
684 | +if ($page < $nro_pages) { |
|
630 | 685 | $navigation .= '<a href="'.api_get_self().'?page='.$page.'">'.get_lang('Next').'</a>'; |
631 | -else |
|
686 | +} else { |
|
632 | 687 | $navigation .= get_lang('Next'); |
688 | +} |
|
633 | 689 | |
634 | 690 | echo $navigation; |
635 | 691 | $user_list = UserManager::get_user_list(array(), array(), $begin, $default); |