@@ -13,7 +13,7 @@ |
||
13 | 13 | if (api_is_allowed_to_edit(null, true)) { |
14 | 14 | echo '<div class="actions">'; |
15 | 15 | echo '<a href="index.php?'.api_get_cidreq().'&action=attendance_add">'. |
16 | - Display::return_icon('new_attendance_list.png', get_lang('CreateANewAttendance'),'',ICON_SIZE_MEDIUM).'</a>'; |
|
16 | + Display::return_icon('new_attendance_list.png', get_lang('CreateANewAttendance'), '', ICON_SIZE_MEDIUM).'</a>'; |
|
17 | 17 | echo '</div>'; |
18 | 18 | } |
19 | 19 | $attendance = new Attendance(); |
@@ -4,7 +4,7 @@ |
||
4 | 4 | // See AttendanceController::calendarLogins function |
5 | 5 | echo '<div class="actions">'; |
6 | 6 | echo '<a href="index.php?'.api_get_cidreq().'&action=calendar_list">'. |
7 | - Display::return_icon('back.png',get_lang('AttendanceCalendar'),'',ICON_SIZE_MEDIUM).'</a>'; |
|
7 | + Display::return_icon('back.png', get_lang('AttendanceCalendar'), '', ICON_SIZE_MEDIUM).'</a>'; |
|
8 | 8 | echo '</div>'; |
9 | 9 | |
10 | 10 | echo $form; |
@@ -14,15 +14,15 @@ discard block |
||
14 | 14 | echo '<div class="actions">'; |
15 | 15 | if ($action == 'calendar_add') { |
16 | 16 | echo '<a href="index.php?'.api_get_cidreq().'&action=calendar_list&attendance_id='.$attendance_id.'">'. |
17 | - Display::return_icon('back.png',get_lang('AttendanceCalendar'),'',ICON_SIZE_MEDIUM).'</a>'; |
|
17 | + Display::return_icon('back.png', get_lang('AttendanceCalendar'), '', ICON_SIZE_MEDIUM).'</a>'; |
|
18 | 18 | } else { |
19 | 19 | echo '<a href="index.php?'.api_get_cidreq().'&action=attendance_sheet_list&attendance_id='.$attendance_id.'">'. |
20 | - Display::return_icon('back.png',get_lang('AttendanceSheet'),'',ICON_SIZE_MEDIUM).'</a>'; |
|
20 | + Display::return_icon('back.png', get_lang('AttendanceSheet'), '', ICON_SIZE_MEDIUM).'</a>'; |
|
21 | 21 | if (api_is_allowed_to_edit()) { |
22 | 22 | echo '<a href="index.php?'.api_get_cidreq().'&action=calendar_add&attendance_id='.$attendance_id.'">'. |
23 | - Display::return_icon('add.png',get_lang('AddDateAndTime'),'',ICON_SIZE_MEDIUM).'</a>'; |
|
23 | + Display::return_icon('add.png', get_lang('AddDateAndTime'), '', ICON_SIZE_MEDIUM).'</a>'; |
|
24 | 24 | echo '<a onclick="javascript:if(!confirm(\''.get_lang('AreYouSureToDeleteAllDates').'\')) return false;" href="index.php?'.api_get_cidreq().'&action=calendar_all_delete&attendance_id='.$attendance_id.'">'. |
25 | - Display::return_icon('clean.png',get_lang('CleanCalendar'),'',ICON_SIZE_MEDIUM).'</a>'; |
|
25 | + Display::return_icon('clean.png', get_lang('CleanCalendar'), '', ICON_SIZE_MEDIUM).'</a>'; |
|
26 | 26 | } |
27 | 27 | } |
28 | 28 | echo '</div>'; |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | $form = new FormValidator( |
59 | 59 | 'attendance_calendar_add', |
60 | 60 | 'POST', |
61 | - 'index.php?action=calendar_add&attendance_id='.$attendance_id.'&' . api_get_cidreq(), |
|
61 | + 'index.php?action=calendar_add&attendance_id='.$attendance_id.'&'.api_get_cidreq(), |
|
62 | 62 | '' |
63 | 63 | ); |
64 | 64 | $form->addElement('header', get_lang('AddADateTime')); |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | 'weekly' => get_lang('RepeatWeekly'), |
96 | 96 | 'monthlyByDate' => get_lang('RepeatMonthlyByDate') |
97 | 97 | ); |
98 | - $form->addElement('select', 'repeat_type', get_lang('RepeatType') , $a_repeat_type); |
|
98 | + $form->addElement('select', 'repeat_type', get_lang('RepeatType'), $a_repeat_type); |
|
99 | 99 | |
100 | 100 | $form->addElement('date_picker', 'end_date_time', get_lang('RepeatEnd'), array('form_name'=>'attendance_calendar_add')); |
101 | 101 | $defaults['end_date_time'] = date('Y-m-d'); |
@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | $form = new FormValidator( |
132 | 132 | 'attendance_calendar_edit', |
133 | 133 | 'POST', |
134 | - 'index.php?action=calendar_edit&attendance_id=' . $attendance_id . '&calendar_id=' . $calendar_id . '&' . api_get_cidreq(), |
|
134 | + 'index.php?action=calendar_edit&attendance_id='.$attendance_id.'&calendar_id='.$calendar_id.'&'.api_get_cidreq(), |
|
135 | 135 | '' |
136 | 136 | ); |
137 | 137 | $form->addDateTimePicker('date_time', array(get_lang('Date')), array('form_name'=>'attendance_calendar_edit'), 5); |
@@ -147,7 +147,7 @@ discard block |
||
147 | 147 | get_lang('DateTime'), |
148 | 148 | null, |
149 | 149 | ICON_SIZE_MEDIUM |
150 | - ).' '.substr($calendar['date_time'], 0, strlen($calendar['date_time'])- 3) .' '; |
|
150 | + ).' '.substr($calendar['date_time'], 0, strlen($calendar['date_time']) - 3).' '; |
|
151 | 151 | |
152 | 152 | if (isset($calendar['groups']) && !empty($calendar['groups'])) { |
153 | 153 | foreach ($calendar['groups'] as $group) { |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | |
13 | 13 | // error messages |
14 | 14 | if (isset($error)) { |
15 | - Display::display_error_message(get_lang('FormHasErrorsPleaseComplete'),false); |
|
15 | + Display::display_error_message(get_lang('FormHasErrorsPleaseComplete'), false); |
|
16 | 16 | } |
17 | 17 | |
18 | 18 | if (!isset($error)) { |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | $form->addElement('hidden', 'sec_token', $token); |
29 | 29 | |
30 | 30 | $form->addText('title', get_lang('Title'), true); |
31 | -$form->applyFilter('title','html_filter'); |
|
31 | +$form->applyFilter('title', 'html_filter'); |
|
32 | 32 | $form->addHtmlEditor( |
33 | 33 | 'description', |
34 | 34 | get_lang('Description'), |
@@ -41,21 +41,21 @@ discard block |
||
41 | 41 | if ((api_get_session_id() != 0 && Gradebook::is_active()) || api_get_session_id() == 0) { |
42 | 42 | $form->addButtonAdvancedSettings('id_qualify'); |
43 | 43 | |
44 | - $form->addElement('html','<div id="id_qualify_options" style="display:none">'); |
|
44 | + $form->addElement('html', '<div id="id_qualify_options" style="display:none">'); |
|
45 | 45 | |
46 | 46 | // Qualify Attendance for gradebook option |
47 | - $form->addElement('checkbox', 'attendance_qualify_gradebook', '', get_lang('QualifyAttendanceGradebook'),'onclick="javascript: if(this.checked){document.getElementById(\'options_field\').style.display = \'block\';}else{document.getElementById(\'options_field\').style.display = \'none\';}"'); |
|
48 | - $form->addElement('html','<div id="options_field" style="display:none">'); |
|
47 | + $form->addElement('checkbox', 'attendance_qualify_gradebook', '', get_lang('QualifyAttendanceGradebook'), 'onclick="javascript: if(this.checked){document.getElementById(\'options_field\').style.display = \'block\';}else{document.getElementById(\'options_field\').style.display = \'none\';}"'); |
|
48 | + $form->addElement('html', '<div id="options_field" style="display:none">'); |
|
49 | 49 | |
50 | 50 | GradebookUtils::load_gradebook_select_in_tool($form); |
51 | 51 | |
52 | 52 | $form->addElement('text', 'attendance_qualify_title', get_lang('TitleColumnGradebook')); |
53 | 53 | $form->applyFilter('attendance_qualify_title', 'html_filter'); |
54 | - $form->addElement('text', 'attendance_weight', get_lang('QualifyWeight'),'value="0.00" Style="width:40px" onfocus="javascript: this.select();"'); |
|
54 | + $form->addElement('text', 'attendance_weight', get_lang('QualifyWeight'), 'value="0.00" Style="width:40px" onfocus="javascript: this.select();"'); |
|
55 | 55 | $form->applyFilter('attendance_weight', 'html_filter'); |
56 | - $form->addElement('html','</div>'); |
|
56 | + $form->addElement('html', '</div>'); |
|
57 | 57 | |
58 | - $form->addElement('html','</div>'); |
|
58 | + $form->addElement('html', '</div>'); |
|
59 | 59 | } |
60 | 60 | $form->addButtonCreate(get_lang('Save')); |
61 | 61 | $form->display(); |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | // Show message to confirm that a tool it to be hidden from available tools |
23 | 23 | // visibility 0,1->2 |
24 | 24 | if (!empty($_GET['askDelete'])) { |
25 | - $content .='<div id="toolhide">'.get_lang('DelLk').'<br /> |
|
25 | + $content .= '<div id="toolhide">'.get_lang('DelLk').'<br /> |
|
26 | 26 | <a href="'.api_get_self().'">'.get_lang('No').'</a> | |
27 | 27 | <a href="'.api_get_self().'?delete=yes&id='.$id.'">'.get_lang('Yes').'</a> |
28 | 28 | </div>'; |
@@ -49,11 +49,11 @@ discard block |
||
49 | 49 | |
50 | 50 | // Start of tools for CourseAdmins (teachers/tutors) |
51 | 51 | if ($session_id == 0 && api_is_course_admin() && api_is_allowed_to_edit(null, true)) { |
52 | - $content .= '<div class="alert alert-success" style="border:0px; margin-top: 0px;padding:0px;"> |
|
52 | + $content .= '<div class="alert alert-success" style="border:0px; margin-top: 0px;padding:0px;"> |
|
53 | 53 | <div class="normal-message" id="id_normal_message" style="display:none">'; |
54 | - $content .= '<img src="'.api_get_path(WEB_PATH).'main/inc/lib/javascript/indicator.gif"/> '; |
|
55 | - $content .= get_lang('PleaseStandBy'); |
|
56 | - $content .= '</div> |
|
54 | + $content .= '<img src="'.api_get_path(WEB_PATH).'main/inc/lib/javascript/indicator.gif"/> '; |
|
55 | + $content .= get_lang('PleaseStandBy'); |
|
56 | + $content .= '</div> |
|
57 | 57 | <div class="alert alert-success" id="id_confirmation_message" style="display:none"></div> |
58 | 58 | </div>'; |
59 | 59 | |
@@ -73,18 +73,18 @@ discard block |
||
73 | 73 | |
74 | 74 | $my_list = CourseHome::get_tools_category(TOOL_AUTHORING); |
75 | 75 | $items = CourseHome::show_tools_category($my_list); |
76 | - $content .= return_block(get_lang('Authoring'), $items, 'course-tools-author'); |
|
76 | + $content .= return_block(get_lang('Authoring'), $items, 'course-tools-author'); |
|
77 | 77 | |
78 | 78 | $my_list = CourseHome::get_tools_category(TOOL_INTERACTION); |
79 | 79 | $list2 = CourseHome::get_tools_category(TOOL_COURSE_PLUGIN); |
80 | 80 | |
81 | - $my_list = array_merge($my_list,$list2); |
|
82 | - $items = CourseHome::show_tools_category($my_list); |
|
83 | - $content .= return_block(get_lang('Interaction'), $items, 'course-tools-interaction'); |
|
81 | + $my_list = array_merge($my_list, $list2); |
|
82 | + $items = CourseHome::show_tools_category($my_list); |
|
83 | + $content .= return_block(get_lang('Interaction'), $items, 'course-tools-interaction'); |
|
84 | 84 | |
85 | 85 | $my_list = CourseHome::get_tools_category(TOOL_ADMIN_PLATFORM); |
86 | 86 | $items = CourseHome::show_tools_category($my_list); |
87 | - $content .= return_block(get_lang('Administration'), $items , 'course-tools-administration'); |
|
87 | + $content .= return_block(get_lang('Administration'), $items, 'course-tools-administration'); |
|
88 | 88 | |
89 | 89 | } elseif (api_is_coach()) { |
90 | 90 | $content .= $pluginExtra; |
@@ -94,10 +94,10 @@ discard block |
||
94 | 94 | <span class="viewcaption">'.get_lang('SessionData').'</span> |
95 | 95 | <table class="course_activity_home">'; |
96 | 96 | $content .= CourseHome::show_session_data($session_id); |
97 | - $content .= '</table></div></div>'; |
|
97 | + $content .= '</table></div></div>'; |
|
98 | 98 | } |
99 | 99 | |
100 | - $content .= '<div class="row">'; |
|
100 | + $content .= '<div class="row">'; |
|
101 | 101 | $my_list = CourseHome::get_tools_category(TOOL_STUDENT_VIEW); |
102 | 102 | $content .= CourseHome::show_tools_category($my_list); |
103 | 103 | $content .= '</div>'; |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | { |
180 | 180 | $html = '<div class="row"> |
181 | 181 | <div class="col-xs-12 col-md-12"> |
182 | - <div class="title-tools">' . $title . '</div> |
|
182 | + <div class="title-tools">' . $title.'</div> |
|
183 | 183 | </div> |
184 | 184 | </div> |
185 | 185 | <div class="row '.$class.'">'.$content.'</div>'; |
@@ -21,13 +21,13 @@ discard block |
||
21 | 21 | } |
22 | 22 | |
23 | 23 | if (isset($_GET['friend_id'])) { |
24 | - $my_current_friend = $_GET['friend_id']; |
|
24 | + $my_current_friend = $_GET['friend_id']; |
|
25 | 25 | UserManager::relate_users($current_user_id, $my_current_friend, $relation_type); |
26 | 26 | UserManager::relate_users($my_current_friend, $current_user_id, $relation_type); |
27 | 27 | SocialManager::invitation_accepted($my_current_friend, $current_user_id); |
28 | 28 | Display::display_normal_message(api_xml_http_response_encode(get_lang('AddedContactToList'))); |
29 | 29 | |
30 | - header('Location: ' . api_get_path(WEB_CODE_PATH) . 'social/invitations.php'); |
|
30 | + header('Location: '.api_get_path(WEB_CODE_PATH).'social/invitations.php'); |
|
31 | 31 | } |
32 | 32 | break; |
33 | 33 | case 'deny_friend': |
@@ -37,15 +37,15 @@ discard block |
||
37 | 37 | } |
38 | 38 | |
39 | 39 | if (isset($_GET['is_my_friend'])) { |
40 | - $relation_type = USER_RELATION_TYPE_FRIEND;//my friend |
|
40 | + $relation_type = USER_RELATION_TYPE_FRIEND; //my friend |
|
41 | 41 | } else { |
42 | - $relation_type = USER_RELATION_TYPE_UNKNOW;//Contact unknown |
|
42 | + $relation_type = USER_RELATION_TYPE_UNKNOW; //Contact unknown |
|
43 | 43 | } |
44 | 44 | if (isset($_GET['denied_friend_id'])) { |
45 | 45 | SocialManager::invitation_denied($_GET['denied_friend_id'], $current_user_id); |
46 | 46 | Display::display_confirmation_message(api_xml_http_response_encode(get_lang('InvitationDenied'))); |
47 | 47 | |
48 | - header('Location: ' . api_get_path(WEB_CODE_PATH) . 'social/invitations.php'); |
|
48 | + header('Location: '.api_get_path(WEB_CODE_PATH).'social/invitations.php'); |
|
49 | 49 | } |
50 | 50 | break; |
51 | 51 | case 'delete_friend': |
@@ -63,8 +63,8 @@ discard block |
||
63 | 63 | echo ''; |
64 | 64 | break; |
65 | 65 | } |
66 | - $user_id = api_get_user_id(); |
|
67 | - $name_search= Security::remove_XSS($_POST['search_name_q']); |
|
66 | + $user_id = api_get_user_id(); |
|
67 | + $name_search = Security::remove_XSS($_POST['search_name_q']); |
|
68 | 68 | $number_friends = 0; |
69 | 69 | |
70 | 70 | if (isset($name_search) && $name_search != 'undefined') { |
@@ -78,14 +78,14 @@ discard block |
||
78 | 78 | |
79 | 79 | $number_friends = count($friends); |
80 | 80 | if ($number_friends != 0) { |
81 | - $number_loop = ($number_friends/$number_of_images); |
|
81 | + $number_loop = ($number_friends / $number_of_images); |
|
82 | 82 | $loop_friends = ceil($number_loop); |
83 | - $j=0; |
|
84 | - for ($k=0; $k<$loop_friends; $k++) { |
|
85 | - if ($j==$number_of_images) { |
|
86 | - $number_of_images=$number_of_images*2; |
|
83 | + $j = 0; |
|
84 | + for ($k = 0; $k < $loop_friends; $k++) { |
|
85 | + if ($j == $number_of_images) { |
|
86 | + $number_of_images = $number_of_images * 2; |
|
87 | 87 | } |
88 | - while ($j<$number_of_images) { |
|
88 | + while ($j < $number_of_images) { |
|
89 | 89 | if (isset($friends[$j])) { |
90 | 90 | $friend = $friends[$j]; |
91 | 91 | $user_name = api_xml_http_response_encode($friend['firstName'].' '.$friend['lastName']); |
@@ -93,15 +93,15 @@ discard block |
||
93 | 93 | |
94 | 94 | $friend_html .= ' |
95 | 95 | <div class="col-md-3"> |
96 | - <div class="thumbnail text-center" id="div_' . $friends[$j]['friend_user_id'] . '"> |
|
97 | - <img src="' . $userPicture . '" class="img-responsive" id="imgfriend_' . $friend['friend_user_id'] . '" title="$user_name"> |
|
96 | + <div class="thumbnail text-center" id="div_' . $friends[$j]['friend_user_id'].'"> |
|
97 | + <img src="' . $userPicture.'" class="img-responsive" id="imgfriend_'.$friend['friend_user_id'].'" title="$user_name"> |
|
98 | 98 | <div class="caption"> |
99 | 99 | <h3> |
100 | - <a href="profile.php?u=' . $friend['friend_user_id'] . '">' . $user_name . '</a> |
|
100 | + <a href="profile.php?u=' . $friend['friend_user_id'].'">'.$user_name.'</a> |
|
101 | 101 | </h3> |
102 | 102 | <p> |
103 | - <button class="btn btn-danger" onclick="delete_friend(this)" id=img_' . $friend['friend_user_id'] . '> |
|
104 | - ' . get_lang('Delete') . ' |
|
103 | + <button class="btn btn-danger" onclick="delete_friend(this)" id=img_' . $friend['friend_user_id'].'> |
|
104 | + ' . get_lang('Delete').' |
|
105 | 105 | </button> |
106 | 106 | </p> |
107 | 107 | </div> |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | |
131 | 131 | switch ($action) { |
132 | 132 | case 'load_course': |
133 | - $course_id = intval($_POST['course_code']); // the int course id |
|
133 | + $course_id = intval($_POST['course_code']); // the int course id |
|
134 | 134 | $course_info = api_get_course_info_by_id($course_id); |
135 | 135 | $course_code = $course_info['code']; |
136 | 136 | |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | //------Forum messages |
139 | 139 | $forum_result = get_all_post_from_user($user_id, $course_code); |
140 | 140 | $all_result_data = 0; |
141 | - if ($forum_result !='') { |
|
141 | + if ($forum_result != '') { |
|
142 | 142 | echo '<div id="social-forum-main-title">'; |
143 | 143 | echo api_xml_http_response_encode(get_lang('Forum')); |
144 | 144 | echo '</div>'; |
@@ -201,7 +201,7 @@ discard block |
||
201 | 201 | if (!empty($array)) { |
202 | 202 | ksort($array); |
203 | 203 | $html = ''; |
204 | - for($i = 0; $i < count($array); $i++) { |
|
204 | + for ($i = 0; $i < count($array); $i++) { |
|
205 | 205 | $post = $array[$i]['html']; |
206 | 206 | $comment = SocialManager::getWallMessagesHTML($userId, $friendId, $array[$i]['id']); |
207 | 207 | $html .= '<div class="panel panel-info"><div class="panel-body">'.$post.$comment.'</div></div>'; |
@@ -209,8 +209,8 @@ discard block |
||
209 | 209 | $html .= Display::div( |
210 | 210 | Display::url( |
211 | 211 | get_lang('SeeMore'), |
212 | - api_get_self() . '?u=' . $userId . '&a=listWallMessage&start=' . |
|
213 | - ($start + $length + 1) . '&length=' . $length, |
|
212 | + api_get_self().'?u='.$userId.'&a=listWallMessage&start='. |
|
213 | + ($start + $length + 1).'&length='.$length, |
|
214 | 214 | array( |
215 | 215 | 'class' => 'nextPage', |
216 | 216 | ) |
@@ -226,7 +226,7 @@ discard block |
||
226 | 226 | case 'readUrlWithOpenGraph': |
227 | 227 | $url = isset($_POST['social_wall_new_msg_main']) ? $_POST['social_wall_new_msg_main'] : ''; |
228 | 228 | $html = ''; |
229 | - if (SocialManager::verifyUrl($url) == true){ |
|
229 | + if (SocialManager::verifyUrl($url) == true) { |
|
230 | 230 | $html = Security::remove_XSS( |
231 | 231 | SocialManager::readContentWithOpenGraph($url) |
232 | 232 | ); |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | $return_skills = array(); |
40 | 40 | foreach ($skills as $skill) { |
41 | 41 | $skill['caption'] = $skill['name']; |
42 | - $skill['value'] = $skill['id']; |
|
42 | + $skill['value'] = $skill['id']; |
|
43 | 43 | $return_skills[] = $skill; |
44 | 44 | } |
45 | 45 | echo json_encode($return_skills); |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | if (!empty($gradebooks)) { |
52 | 52 | foreach ($gradebooks as $gradebook) { |
53 | 53 | if ($gradebook['parent_id'] == 0 && !empty($gradebook['certif_min_score']) && !empty($gradebook['document_id'])) { |
54 | - $gradebook_list[] = $gradebook; |
|
54 | + $gradebook_list[] = $gradebook; |
|
55 | 55 | //$gradebook['name'] = $gradebook['name']; |
56 | 56 | //$gradebook_list[] = $gradebook; |
57 | 57 | } else { |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | $return = array(); |
68 | 68 | foreach ($gradebooks as $item) { |
69 | 69 | $item['caption'] = $item['name']; |
70 | - $item['value'] = $item['id']; |
|
70 | + $item['value'] = $item['id']; |
|
71 | 71 | $return[] = $item; |
72 | 72 | } |
73 | 73 | echo json_encode($return); |
@@ -92,13 +92,13 @@ discard block |
||
92 | 92 | } |
93 | 93 | break; |
94 | 94 | case 'get_skills_by_profile': |
95 | - $skill_rel_profile = new SkillRelProfile(); |
|
95 | + $skill_rel_profile = new SkillRelProfile(); |
|
96 | 96 | $profile_id = isset($_REQUEST['profile_id']) ? $_REQUEST['profile_id'] : null; |
97 | 97 | $skills = $skill_rel_profile->get_skills_by_profile($profile_id); |
98 | 98 | echo json_encode($skills); |
99 | 99 | break; |
100 | 100 | case 'get_saved_profiles': |
101 | - $skill_profile = new SkillProfile(); |
|
101 | + $skill_profile = new SkillProfile(); |
|
102 | 102 | $profiles = $skill_profile->get_all(); |
103 | 103 | Display::display_no_header(); |
104 | 104 | Display::$global_template->assign('profiles', $profiles); |
@@ -187,7 +187,7 @@ discard block |
||
187 | 187 | $success = false; |
188 | 188 | } |
189 | 189 | |
190 | - $result = array ( |
|
190 | + $result = array( |
|
191 | 191 | 'success' => $success, |
192 | 192 | 'data' => $return |
193 | 193 | ); |
@@ -198,7 +198,7 @@ discard block |
||
198 | 198 | $skills = $skill->get_direct_parents($id); |
199 | 199 | $return = array(); |
200 | 200 | foreach ($skills as $skill) { |
201 | - $return [$skill['data']['id']] = array ( |
|
201 | + $return [$skill['data']['id']] = array( |
|
202 | 202 | 'id' => $skill['data']['id'], |
203 | 203 | 'parent_id' => $skill['data']['parent_id'], |
204 | 204 | 'name' => $skill['data']['name'] |
@@ -207,8 +207,8 @@ discard block |
||
207 | 207 | echo json_encode($return); |
208 | 208 | break; |
209 | 209 | case 'profile_matches': |
210 | - $skill_rel_user = new SkillRelUser(); |
|
211 | - $skills = (!empty($_REQUEST['skill_id'])?$_REQUEST['skill_id']:array()); |
|
210 | + $skill_rel_user = new SkillRelUser(); |
|
211 | + $skills = (!empty($_REQUEST['skill_id']) ? $_REQUEST['skill_id'] : array()); |
|
212 | 212 | |
213 | 213 | $total_skills_to_search = $skills; |
214 | 214 | $users = $skill_rel_user->get_user_by_skills($skills); |
@@ -8,7 +8,7 @@ discard block |
||
8 | 8 | */ |
9 | 9 | |
10 | 10 | require_once '../global.inc.php'; |
11 | -require_once api_get_path(SYS_CODE_PATH) . 'forum/forumfunction.inc.php'; |
|
11 | +require_once api_get_path(SYS_CODE_PATH).'forum/forumfunction.inc.php'; |
|
12 | 12 | |
13 | 13 | // First, protect this script |
14 | 14 | api_protect_course_script(false); |
@@ -63,13 +63,13 @@ discard block |
||
63 | 63 | break; |
64 | 64 | } |
65 | 65 | // If pass all previous control, user can edit post |
66 | - $courseId = isset($_REQUEST['c_id'])? intval($_REQUEST['c_id']) : api_get_course_int_id(); |
|
66 | + $courseId = isset($_REQUEST['c_id']) ? intval($_REQUEST['c_id']) : api_get_course_int_id(); |
|
67 | 67 | $json['courseId'] = $courseId; |
68 | - $forumId = isset($_REQUEST['forum'])? intval($_REQUEST['forum']) : null; |
|
68 | + $forumId = isset($_REQUEST['forum']) ? intval($_REQUEST['forum']) : null; |
|
69 | 69 | $json['forum'] = $forumId; |
70 | - $threadId = isset($_REQUEST['thread'])? intval($_REQUEST['thread']) : null; |
|
70 | + $threadId = isset($_REQUEST['thread']) ? intval($_REQUEST['thread']) : null; |
|
71 | 71 | $json['thread'] = $threadId; |
72 | - $postId = isset($_REQUEST['postId'])? intval($_REQUEST['postId']) : null; |
|
72 | + $postId = isset($_REQUEST['postId']) ? intval($_REQUEST['postId']) : null; |
|
73 | 73 | $json['postId'] = $postId; |
74 | 74 | |
75 | 75 | if (!empty($courseId) && |
@@ -23,7 +23,7 @@ |
||
23 | 23 | // set URL and other appropriate options |
24 | 24 | $defaults = array( |
25 | 25 | CURLOPT_URL => $url, |
26 | - CURLOPT_FOLLOWLOCATION => true, // follow redirects accept youtube.com |
|
26 | + CURLOPT_FOLLOWLOCATION => true, // follow redirects accept youtube.com |
|
27 | 27 | CURLOPT_HEADER => 0, |
28 | 28 | CURLOPT_RETURNTRANSFER => true, |
29 | 29 | CURLOPT_TIMEOUT => 4 |