@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | null, |
31 | 31 | true |
32 | 32 | ); |
33 | - $na_image = str_replace('.png', '_na.png', $tool_image); |
|
33 | + $na_image = str_replace('.png', '_na.png', $tool_image); |
|
34 | 34 | } |
35 | 35 | |
36 | 36 | if (isset($tool_info['custom_icon']) && !empty($tool_info['custom_icon'])) { |
@@ -38,20 +38,20 @@ discard block |
||
38 | 38 | $na_image = CourseHome::getCustomWebIconPath().CourseHome::getDisableIcon($tool_info['custom_icon']); |
39 | 39 | } |
40 | 40 | |
41 | - $requested_image = ($tool_visibility == 0 ) ? $tool_image : $na_image; |
|
42 | - $requested_class = ($tool_visibility == 0 ) ? 'visible' : 'invisible'; |
|
43 | - $requested_message = ($tool_visibility == 0 ) ? 'is_active' : 'is_inactive'; |
|
44 | - $requested_view = ($tool_visibility == 0 ) ? 'visible.png' : 'invisible.png'; |
|
45 | - $requested_visible = ($tool_visibility == 0 ) ? 1 : 0; |
|
41 | + $requested_image = ($tool_visibility == 0) ? $tool_image : $na_image; |
|
42 | + $requested_class = ($tool_visibility == 0) ? 'visible' : 'invisible'; |
|
43 | + $requested_message = ($tool_visibility == 0) ? 'is_active' : 'is_inactive'; |
|
44 | + $requested_view = ($tool_visibility == 0) ? 'visible.png' : 'invisible.png'; |
|
45 | + $requested_visible = ($tool_visibility == 0) ? 1 : 0; |
|
46 | 46 | |
47 | - $requested_view = ($tool_visibility == 0 ) ? 'visible.png' : 'invisible.png'; |
|
48 | - $requested_visible = ($tool_visibility == 0 ) ? 1 : 0; |
|
47 | + $requested_view = ($tool_visibility == 0) ? 'visible.png' : 'invisible.png'; |
|
48 | + $requested_visible = ($tool_visibility == 0) ? 1 : 0; |
|
49 | 49 | |
50 | 50 | // HIDE AND REACTIVATE TOOL |
51 | 51 | if ($_GET["id"] == strval(intval($_GET["id"]))) { |
52 | 52 | $sql = "UPDATE $tool_table SET |
53 | 53 | visibility = $requested_visible |
54 | - WHERE c_id = $course_id AND id='" . intval($_GET['id']) . "'"; |
|
54 | + WHERE c_id = $course_id AND id='".intval($_GET['id'])."'"; |
|
55 | 55 | Database::query($sql); |
56 | 56 | } |
57 | 57 | $response_data = array( |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | WHERE c_id = ".$course_info['real_id']." AND session_id = 0 |
83 | 83 | ORDER BY id"; |
84 | 84 | $result = Database::query($sql); |
85 | - if (Database::num_rows($result) > 0 ) { |
|
85 | + if (Database::num_rows($result) > 0) { |
|
86 | 86 | while ($description = Database::fetch_object($result)) { |
87 | 87 | $descriptions[$description->id] = $description; |
88 | 88 | } |
@@ -104,12 +104,12 @@ discard block |
||
104 | 104 | |
105 | 105 | require_once '../global.inc.php'; |
106 | 106 | $now = time(); |
107 | - $page = intval($_REQUEST['page']); //page |
|
108 | - $limit = intval($_REQUEST['rows']); // quantity of rows |
|
107 | + $page = intval($_REQUEST['page']); //page |
|
108 | + $limit = intval($_REQUEST['rows']); // quantity of rows |
|
109 | 109 | //index to filter |
110 | 110 | $sidx = isset($_REQUEST['sidx']) && !empty($_REQUEST['sidx']) ? $_REQUEST['sidx'] : 'id'; |
111 | - $sord = $_REQUEST['sord']; //asc or desc |
|
112 | - if (!in_array($sord, array('asc','desc'))) { |
|
111 | + $sord = $_REQUEST['sord']; //asc or desc |
|
112 | + if (!in_array($sord, array('asc', 'desc'))) { |
|
113 | 113 | $sord = 'desc'; |
114 | 114 | } |
115 | 115 | $session_id = intval($_REQUEST['session_id']); |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | if (!api_is_platform_admin()) { |
121 | 121 | $new_session_list = UserManager::get_personal_session_course_list(api_get_user_id()); |
122 | 122 | $my_session_list = array(); |
123 | - foreach($new_session_list as $item) { |
|
123 | + foreach ($new_session_list as $item) { |
|
124 | 124 | if (!empty($item['id_session'])) |
125 | 125 | $my_session_list[] = $item['id_session']; |
126 | 126 | } |
@@ -129,7 +129,7 @@ discard block |
||
129 | 129 | } |
130 | 130 | } |
131 | 131 | |
132 | - $start = $limit*$page - $limit; |
|
132 | + $start = $limit * $page - $limit; |
|
133 | 133 | $course_list = SessionManager::get_course_list_by_session_id($session_id); |
134 | 134 | $count = 0; |
135 | 135 | $temp = array(); |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | $item['title'] = Display::url($item['title'], $course_url, array('target' => SESSION_LINK_TARGET)); |
142 | 142 | |
143 | 143 | foreach ($flat_list as $lp_id => $lp_item) { |
144 | - $temp[$count]['id']= $lp_id; |
|
144 | + $temp[$count]['id'] = $lp_id; |
|
145 | 145 | |
146 | 146 | $lp = new learnpath($item['code'], $lp_id, api_get_user_id()); |
147 | 147 | if ($lp->progress_db == 100) { |
@@ -205,27 +205,27 @@ discard block |
||
205 | 205 | |
206 | 206 | $temp = msort($temp, $sidx, $sord); |
207 | 207 | |
208 | - $i =0; |
|
208 | + $i = 0; |
|
209 | 209 | $response = new stdClass(); |
210 | - foreach($temp as $key=>$row) { |
|
210 | + foreach ($temp as $key=>$row) { |
|
211 | 211 | $row = $row['cell']; |
212 | 212 | if (!empty($row)) { |
213 | - if ($key >= $start && $key < ($start + $limit)) { |
|
214 | - $response->rows[$i]['id']= $key; |
|
215 | - $response->rows[$i]['cell']=array($row[0], $row[1], $row[2]); |
|
213 | + if ($key >= $start && $key < ($start + $limit)) { |
|
214 | + $response->rows[$i]['id'] = $key; |
|
215 | + $response->rows[$i]['cell'] = array($row[0], $row[1], $row[2]); |
|
216 | 216 | $i++; |
217 | 217 | } |
218 | 218 | } |
219 | 219 | } |
220 | 220 | |
221 | - if($count > 0 && $limit > 0) { |
|
222 | - $total_pages = ceil($count/$limit); |
|
221 | + if ($count > 0 && $limit > 0) { |
|
222 | + $total_pages = ceil($count / $limit); |
|
223 | 223 | } else { |
224 | 224 | $total_pages = 0; |
225 | 225 | } |
226 | - $response->total = $total_pages; |
|
226 | + $response->total = $total_pages; |
|
227 | 227 | if ($page > $total_pages) { |
228 | - $response->page= $total_pages; |
|
228 | + $response->page = $total_pages; |
|
229 | 229 | } else { |
230 | 230 | $response->page = $page; |
231 | 231 | } |
@@ -236,13 +236,13 @@ discard block |
||
236 | 236 | require_once '../global.inc.php'; |
237 | 237 | $now = time(); |
238 | 238 | |
239 | - $page = intval($_REQUEST['page']); //page |
|
240 | - $limit = intval($_REQUEST['rows']); // quantity of rows |
|
239 | + $page = intval($_REQUEST['page']); //page |
|
240 | + $limit = intval($_REQUEST['rows']); // quantity of rows |
|
241 | 241 | $sidx = isset($_REQUEST['sidx']) && !empty($_REQUEST['sidx']) ? $_REQUEST['sidx'] : 'course'; |
242 | 242 | $sidx = str_replace(array('week desc,', ' '), '', $sidx); |
243 | 243 | |
244 | - $sord = $_REQUEST['sord']; //asc or desc |
|
245 | - if (!in_array($sord, array('asc','desc'))) { |
|
244 | + $sord = $_REQUEST['sord']; //asc or desc |
|
245 | + if (!in_array($sord, array('asc', 'desc'))) { |
|
246 | 246 | $sord = 'desc'; |
247 | 247 | } |
248 | 248 | |
@@ -253,7 +253,7 @@ discard block |
||
253 | 253 | if (!api_is_platform_admin()) { |
254 | 254 | $new_session_list = UserManager::get_personal_session_course_list(api_get_user_id()); |
255 | 255 | $my_session_list = array(); |
256 | - foreach($new_session_list as $item) { |
|
256 | + foreach ($new_session_list as $item) { |
|
257 | 257 | if (!empty($item['id_session'])) |
258 | 258 | $my_session_list[] = $item['id_session']; |
259 | 259 | } |
@@ -262,7 +262,7 @@ discard block |
||
262 | 262 | } |
263 | 263 | } |
264 | 264 | |
265 | - $start = $limit*$page - $limit; |
|
265 | + $start = $limit * $page - $limit; |
|
266 | 266 | $course_list = SessionManager::get_course_list_by_session_id($session_id); |
267 | 267 | |
268 | 268 | $count = 0; |
@@ -274,13 +274,13 @@ discard block |
||
274 | 274 | } |
275 | 275 | } |
276 | 276 | |
277 | - $list = new LearnpathList(api_get_user_id(),$item['code'], $session_id, 'publicated_on DESC'); |
|
277 | + $list = new LearnpathList(api_get_user_id(), $item['code'], $session_id, 'publicated_on DESC'); |
|
278 | 278 | $flat_list = $list->get_flat_list(); |
279 | 279 | $lps[$item['code']] = $flat_list; |
280 | - $item['title'] = Display::url($item['title'],api_get_path(WEB_COURSE_PATH).$item['directory'].'/?id_session='.$session_id,array('target'=>SESSION_LINK_TARGET)); |
|
280 | + $item['title'] = Display::url($item['title'], api_get_path(WEB_COURSE_PATH).$item['directory'].'/?id_session='.$session_id, array('target'=>SESSION_LINK_TARGET)); |
|
281 | 281 | |
282 | 282 | foreach ($flat_list as $lp_id => $lp_item) { |
283 | - $temp[$count]['id']= $lp_id; |
|
283 | + $temp[$count]['id'] = $lp_id; |
|
284 | 284 | $lp_url = api_get_path(WEB_CODE_PATH).'newscorm/lp_controller.php?cidReq='.$item['code'].'&id_session='.$session_id.'&lp_id='.$lp_id.'&action=view'; |
285 | 285 | |
286 | 286 | $last_date = Tracking::get_last_connection_date_on_the_course( |
@@ -338,20 +338,20 @@ discard block |
||
338 | 338 | } |
339 | 339 | |
340 | 340 | $response = new stdClass(); |
341 | - $i =0; |
|
342 | - foreach($temp as $key=>$row) { |
|
341 | + $i = 0; |
|
342 | + foreach ($temp as $key=>$row) { |
|
343 | 343 | $row = $row['cell']; |
344 | 344 | if (!empty($row)) { |
345 | - if ($key >= $start && $key < ($start + $limit)) { |
|
346 | - $response->rows[$i]['id']= $key; |
|
347 | - $response->rows[$i]['cell']=array($row[0], $row[1], $row[2],$row[3]); |
|
345 | + if ($key >= $start && $key < ($start + $limit)) { |
|
346 | + $response->rows[$i]['id'] = $key; |
|
347 | + $response->rows[$i]['cell'] = array($row[0], $row[1], $row[2], $row[3]); |
|
348 | 348 | $i++; |
349 | 349 | } |
350 | 350 | } |
351 | 351 | } |
352 | 352 | |
353 | 353 | if ($count > 0 && $limit > 0) { |
354 | - $total_pages = ceil($count/$limit); |
|
354 | + $total_pages = ceil($count / $limit); |
|
355 | 355 | } else { |
356 | 356 | $total_pages = 0; |
357 | 357 | } |
@@ -367,13 +367,13 @@ discard block |
||
367 | 367 | case 'session_courses_lp_by_course': |
368 | 368 | require_once '../global.inc.php'; |
369 | 369 | $now = time(); |
370 | - $page = intval($_REQUEST['page']); //page |
|
371 | - $limit = intval($_REQUEST['rows']); // quantity of rows |
|
370 | + $page = intval($_REQUEST['page']); //page |
|
371 | + $limit = intval($_REQUEST['rows']); // quantity of rows |
|
372 | 372 | $sidx = isset($_REQUEST['sidx']) && !empty($_REQUEST['sidx']) ? $_REQUEST['sidx'] : 'id'; |
373 | 373 | $sidx = str_replace(array('course asc,', ' '), '', $sidx); |
374 | 374 | |
375 | - $sord = $_REQUEST['sord']; //asc or desc |
|
376 | - if (!in_array($sord, array('asc','desc'))) { |
|
375 | + $sord = $_REQUEST['sord']; //asc or desc |
|
376 | + if (!in_array($sord, array('asc', 'desc'))) { |
|
377 | 377 | $sord = 'desc'; |
378 | 378 | } |
379 | 379 | $session_id = intval($_REQUEST['session_id']); |
@@ -383,7 +383,7 @@ discard block |
||
383 | 383 | if (!api_is_platform_admin()) { |
384 | 384 | $new_session_list = UserManager::get_personal_session_course_list(api_get_user_id()); |
385 | 385 | $my_session_list = array(); |
386 | - foreach($new_session_list as $item) { |
|
386 | + foreach ($new_session_list as $item) { |
|
387 | 387 | if (!empty($item['id_session'])) |
388 | 388 | $my_session_list[] = $item['id_session']; |
389 | 389 | } |
@@ -392,7 +392,7 @@ discard block |
||
392 | 392 | } |
393 | 393 | } |
394 | 394 | |
395 | - $start = $limit*$page - $limit; |
|
395 | + $start = $limit * $page - $limit; |
|
396 | 396 | $course_list = SessionManager::get_course_list_by_session_id($session_id); |
397 | 397 | $count = 0; |
398 | 398 | |
@@ -403,15 +403,15 @@ discard block |
||
403 | 403 | } |
404 | 404 | } |
405 | 405 | |
406 | - $list = new LearnpathList(api_get_user_id(),$item['code'],$session_id); |
|
406 | + $list = new LearnpathList(api_get_user_id(), $item['code'], $session_id); |
|
407 | 407 | $flat_list = $list->get_flat_list(); |
408 | 408 | $lps[$item['code']] = $flat_list; |
409 | 409 | $item['title'] = Display::url( |
410 | 410 | $item['title'], |
411 | 411 | api_get_path(WEB_COURSE_PATH).$item['directory'].'/?id_session='.$session_id, array('target'=>SESSION_LINK_TARGET) |
412 | 412 | ); |
413 | - foreach($flat_list as $lp_id => $lp_item) { |
|
414 | - $temp[$count]['id']= $lp_id; |
|
413 | + foreach ($flat_list as $lp_id => $lp_item) { |
|
414 | + $temp[$count]['id'] = $lp_id; |
|
415 | 415 | $lp_url = api_get_path(WEB_CODE_PATH).'newscorm/lp_controller.php?cidReq='.$item['code'].'&id_session='.$session_id.'&lp_id='.$lp_id.'&action=view'; |
416 | 416 | $last_date = Tracking::get_last_connection_date_on_the_course( |
417 | 417 | api_get_user_id(), |
@@ -465,13 +465,13 @@ discard block |
||
465 | 465 | $temp = msort($temp, $sidx, $sord); |
466 | 466 | |
467 | 467 | $response = new stdClass(); |
468 | - $i =0; |
|
468 | + $i = 0; |
|
469 | 469 | foreach ($temp as $key=>$row) { |
470 | 470 | $row = $row['cell']; |
471 | 471 | if (!empty($row)) { |
472 | - if ($key >= $start && $key < ($start + $limit)) { |
|
473 | - $response->rows[$i]['id']= $key; |
|
474 | - $response->rows[$i]['cell']=array($row[0], $row[1], $row[2]); |
|
472 | + if ($key >= $start && $key < ($start + $limit)) { |
|
473 | + $response->rows[$i]['id'] = $key; |
|
474 | + $response->rows[$i]['cell'] = array($row[0], $row[1], $row[2]); |
|
475 | 475 | $i++; |
476 | 476 | } |
477 | 477 | } |
@@ -5,7 +5,7 @@ discard block |
||
5 | 5 | * Responses to AJAX calls |
6 | 6 | */ |
7 | 7 | |
8 | -$_dont_save_user_course_access = true; |
|
8 | +$_dont_save_user_course_access = true; |
|
9 | 9 | |
10 | 10 | require_once '../global.inc.php'; |
11 | 11 | |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | } |
35 | 35 | |
36 | 36 | $to_user_id = isset($_REQUEST['to']) ? $_REQUEST['to'] : null; |
37 | -$message = isset($_REQUEST['message']) ? $_REQUEST['message'] : null; |
|
37 | +$message = isset($_REQUEST['message']) ? $_REQUEST['message'] : null; |
|
38 | 38 | |
39 | 39 | if (!isset($_SESSION['chatHistory'])) { |
40 | 40 | $_SESSION['chatHistory'] = array(); |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | } |
46 | 46 | |
47 | 47 | $chat = new Chat(); |
48 | -if (chat::disableChat()){ |
|
48 | +if (chat::disableChat()) { |
|
49 | 49 | exit; |
50 | 50 | } |
51 | 51 | if ($chat->is_chat_blocked_by_exercises()) { |
@@ -85,9 +85,9 @@ discard block |
||
85 | 85 | $room = VideoChat::getChatRoomByUsers(api_get_user_id(), $to_user_id); |
86 | 86 | } |
87 | 87 | |
88 | - $videoChatUrl = api_get_path(WEB_LIBRARY_JS_PATH) . "chat/video.php?room={$room['id']}"; |
|
88 | + $videoChatUrl = api_get_path(WEB_LIBRARY_JS_PATH)."chat/video.php?room={$room['id']}"; |
|
89 | 89 | $videoChatLink = Display::url( |
90 | - Display::returnFontAwesomeIcon('video-camera') . get_lang('StartVideoChat'), |
|
90 | + Display::returnFontAwesomeIcon('video-camera').get_lang('StartVideoChat'), |
|
91 | 91 | $videoChatUrl |
92 | 92 | ); |
93 | 93 |
@@ -58,9 +58,9 @@ |
||
58 | 58 | $db['is_empty'] = false; |
59 | 59 | $db['result'] = convert_to_string($sql_result); |
60 | 60 | $rst = get_stats($user_id, $course_code, $start_date, $end_date); |
61 | - $foo_stats = '<strong>' . get_lang('Total') . ': </strong>' . $rst['total'] . '<br />'; |
|
62 | - $foo_stats .= '<strong>' . get_lang('Average') . ': </strong>' . $rst['avg'] . '<br />'; |
|
63 | - $foo_stats .= '<strong>' . get_lang('Quantity') . ' : </strong>' . $rst['times'] . '<br />'; |
|
61 | + $foo_stats = '<strong>'.get_lang('Total').': </strong>'.$rst['total'].'<br />'; |
|
62 | + $foo_stats .= '<strong>'.get_lang('Average').': </strong>'.$rst['avg'].'<br />'; |
|
63 | + $foo_stats .= '<strong>'.get_lang('Quantity').' : </strong>'.$rst['times'].'<br />'; |
|
64 | 64 | $db['stats'] = $foo_stats; |
65 | 65 | $db['graph_result'] = grapher($sql_result, $start_date, $end_date, $type); |
66 | 66 | } else { |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | <div class="row"> |
59 | 59 | <div class="col-sm-10 col-sm-offset-2"> |
60 | 60 | <a class="btn btn-primary" id="send_message_link"> |
61 | - <em class="fa fa-envelope"></em> ' . get_lang('Send') . ' |
|
61 | + <em class="fa fa-envelope"></em> ' . get_lang('Send').' |
|
62 | 62 | </a> |
63 | 63 | </div> |
64 | 64 | </div> |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | |
113 | 113 | if (!empty($user_id)) { |
114 | 114 | $user_table = Database :: get_main_table(TABLE_MAIN_USER); |
115 | - $sql="UPDATE $user_table SET active='".$status."' WHERE user_id='".$user_id."'"; |
|
115 | + $sql = "UPDATE $user_table SET active='".$status."' WHERE user_id='".$user_id."'"; |
|
116 | 116 | $result = Database::query($sql); |
117 | 117 | |
118 | 118 | //Send and email if account is active |
@@ -122,13 +122,13 @@ discard block |
||
122 | 122 | $emailsubject = '['.api_get_setting('siteName').'] '.get_lang('YourReg').' '.api_get_setting('siteName'); |
123 | 123 | $email_admin = api_get_setting('emailAdministrator'); |
124 | 124 | $sender_name = api_get_person_name(api_get_setting('administratorName'), api_get_setting('administratorSurname'), null, PERSON_NAME_EMAIL_ADDRESS); |
125 | - $emailbody=get_lang('Dear')." ".stripslashes($recipient_name).",\n\n"; |
|
125 | + $emailbody = get_lang('Dear')." ".stripslashes($recipient_name).",\n\n"; |
|
126 | 126 | |
127 | - $emailbody.=sprintf(get_lang('YourAccountOnXHasJustBeenApprovedByOneOfOurAdministrators'), api_get_setting('siteName'))."\n"; |
|
128 | - $emailbody.=sprintf(get_lang('YouCanNowLoginAtXUsingTheLoginAndThePasswordYouHaveProvided'), api_get_path(WEB_PATH)).",\n\n"; |
|
129 | - $emailbody.=get_lang('HaveFun')."\n\n"; |
|
127 | + $emailbody .= sprintf(get_lang('YourAccountOnXHasJustBeenApprovedByOneOfOurAdministrators'), api_get_setting('siteName'))."\n"; |
|
128 | + $emailbody .= sprintf(get_lang('YouCanNowLoginAtXUsingTheLoginAndThePasswordYouHaveProvided'), api_get_path(WEB_PATH)).",\n\n"; |
|
129 | + $emailbody .= get_lang('HaveFun')."\n\n"; |
|
130 | 130 | //$emailbody.=get_lang('Problem'). "\n\n". get_lang('SignatureFormula'); |
131 | - $emailbody.=api_get_person_name(api_get_setting('administratorName'), api_get_setting('administratorSurname'))."\n". get_lang('Manager'). " ".api_get_setting('siteName')."\nT. ".api_get_setting('administratorTelephone')."\n" .get_lang('Email') ." : ".api_get_setting('emailAdministrator'); |
|
131 | + $emailbody .= api_get_person_name(api_get_setting('administratorName'), api_get_setting('administratorSurname'))."\n".get_lang('Manager')." ".api_get_setting('siteName')."\nT. ".api_get_setting('administratorTelephone')."\n".get_lang('Email')." : ".api_get_setting('emailAdministrator'); |
|
132 | 132 | |
133 | 133 | $additionalParameters = array( |
134 | 134 | 'smsType' => SmsPlugin::ACCOUNT_APPROVED_CONNECT, |
@@ -98,8 +98,8 @@ discard block |
||
98 | 98 | } |
99 | 99 | $new_thematic_list = array(); |
100 | 100 | |
101 | - foreach($thematic_list_temp as $item) { |
|
102 | - if (!empty($item['attendance_id']) ) { |
|
101 | + foreach ($thematic_list_temp as $item) { |
|
102 | + if (!empty($item['attendance_id'])) { |
|
103 | 103 | $new_thematic_list[$item['id']] = array('attendance_id' =>$item['attendance_id'], 'start_date'=>$item['start_date']); |
104 | 104 | } |
105 | 105 | } |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | //checking if was already taken |
116 | 116 | foreach ($new_thematic_list as $key => $thematic_item) { |
117 | 117 | //if ($calendar['db_date_time'] == $thematic_item['start_date'] && $calendar['attendance_id'] == $thematic_item['attendance_id'] ) { |
118 | - if ($calendar['db_date_time'] == $thematic_item['start_date'] ) { |
|
118 | + if ($calendar['db_date_time'] == $thematic_item['start_date']) { |
|
119 | 119 | $insert = false; |
120 | 120 | if ($thematic_advance_id == $key) { |
121 | 121 | $insert = true; |
@@ -196,7 +196,7 @@ |
||
196 | 196 | * |
197 | 197 | * @return array |
198 | 198 | */ |
199 | - public function sender($key = '', $userId = '') |
|
199 | + public function sender($key = '', $userId = '') |
|
200 | 200 | { |
201 | 201 | $_user = api_get_user_info($userId); |
202 | 202 |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | */ |
36 | 36 | public static function path($name = '') |
37 | 37 | { |
38 | - return api_get_path(SYS_PATH) . 'custompages/' . $name; |
|
38 | + return api_get_path(SYS_PATH).'custompages/'.$name; |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | /** |
@@ -50,12 +50,12 @@ discard block |
||
50 | 50 | return false; |
51 | 51 | } |
52 | 52 | |
53 | - $file = self::path($page_name . '.php'); |
|
53 | + $file = self::path($page_name.'.php'); |
|
54 | 54 | if (file_exists($file)) { |
55 | 55 | include($file); |
56 | 56 | exit; |
57 | 57 | } else { |
58 | - error_log('CustomPages::displayPage : could not read file ' . $file); |
|
58 | + error_log('CustomPages::displayPage : could not read file '.$file); |
|
59 | 59 | } |
60 | 60 | } |
61 | 61 | |
@@ -69,14 +69,14 @@ discard block |
||
69 | 69 | public static function getURLImages($url_id = null) |
70 | 70 | { |
71 | 71 | if (is_null($url_id)) { |
72 | - $url = 'http://' . $_SERVER['HTTP_HOST'] . '/'; |
|
72 | + $url = 'http://'.$_SERVER['HTTP_HOST'].'/'; |
|
73 | 73 | $url_id = UrlManager::get_url_id($url); |
74 | 74 | } |
75 | - $url_images_dir = api_get_path(SYS_PATH) . 'custompages/url-images/'; |
|
75 | + $url_images_dir = api_get_path(SYS_PATH).'custompages/url-images/'; |
|
76 | 76 | $images = array(); |
77 | 77 | for ($img_id = 1; $img_id <= 3; $img_id++) { |
78 | - if (file_exists($url_images_dir . $url_id . '_url_image_' . $img_id . '.png')) { |
|
79 | - $images[] = api_get_path(WEB_PATH) . 'custompages/url-images/' . $url_id . '_url_image_' . $img_id . '.png'; |
|
78 | + if (file_exists($url_images_dir.$url_id.'_url_image_'.$img_id.'.png')) { |
|
79 | + $images[] = api_get_path(WEB_PATH).'custompages/url-images/'.$url_id.'_url_image_'.$img_id.'.png'; |
|
80 | 80 | } |
81 | 81 | } |
82 | 82 |
@@ -355,7 +355,7 @@ discard block |
||
355 | 355 | $newMessageText = ''; |
356 | 356 | $linkToNewMessage = Display::url( |
357 | 357 | get_lang('SeeMessage'), |
358 | - api_get_path(WEB_CODE_PATH) . 'messages/inbox.php' |
|
358 | + api_get_path(WEB_CODE_PATH).'messages/inbox.php' |
|
359 | 359 | ); |
360 | 360 | break; |
361 | 361 | case self::NOTIFICATION_TYPE_MESSAGE: |
@@ -370,7 +370,7 @@ discard block |
||
370 | 370 | } |
371 | 371 | $linkToNewMessage = Display::url( |
372 | 372 | get_lang('SeeMessage'), |
373 | - api_get_path(WEB_CODE_PATH) . 'messages/inbox.php' |
|
373 | + api_get_path(WEB_CODE_PATH).'messages/inbox.php' |
|
374 | 374 | ); |
375 | 375 | break; |
376 | 376 | case self::NOTIFICATION_TYPE_INVITATION: |
@@ -385,7 +385,7 @@ discard block |
||
385 | 385 | } |
386 | 386 | $linkToNewMessage = Display::url( |
387 | 387 | get_lang('SeeInvitation'), |
388 | - api_get_path(WEB_CODE_PATH) . 'social/invitations.php' |
|
388 | + api_get_path(WEB_CODE_PATH).'social/invitations.php' |
|
389 | 389 | ); |
390 | 390 | break; |
391 | 391 | case self::NOTIFICATION_TYPE_GROUP: |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | self::navigate($url); |
35 | 35 | } |
36 | 36 | |
37 | - $url = self::www() . $url; |
|
37 | + $url = self::www().$url; |
|
38 | 38 | self::navigate($url); |
39 | 39 | } |
40 | 40 | |
@@ -67,25 +67,25 @@ discard block |
||
67 | 67 | case COURSEMANAGER: |
68 | 68 | $redir = api_get_setting('teacher_page_after_login'); |
69 | 69 | if (!empty($redir)) { |
70 | - self::navigate(api_get_path(WEB_PATH) . $redir); |
|
70 | + self::navigate(api_get_path(WEB_PATH).$redir); |
|
71 | 71 | } |
72 | 72 | break; |
73 | 73 | case STUDENT: |
74 | 74 | $redir = api_get_setting('student_page_after_login'); |
75 | 75 | if (!empty($redir)) { |
76 | - self::navigate(api_get_path(WEB_PATH) . $redir); |
|
76 | + self::navigate(api_get_path(WEB_PATH).$redir); |
|
77 | 77 | } |
78 | 78 | break; |
79 | 79 | case DRH: |
80 | 80 | $redir = api_get_setting('drh_page_after_login'); |
81 | 81 | if (!empty($redir)) { |
82 | - self::navigate(api_get_path(WEB_PATH) . $redir); |
|
82 | + self::navigate(api_get_path(WEB_PATH).$redir); |
|
83 | 83 | } |
84 | 84 | break; |
85 | 85 | case SESSIONADMIN: |
86 | 86 | $redir = api_get_setting('sessionadmin_page_after_login'); |
87 | 87 | if (!empty($redir)) { |
88 | - self::navigate(api_get_path(WEB_PATH) . $redir); |
|
88 | + self::navigate(api_get_path(WEB_PATH).$redir); |
|
89 | 89 | } |
90 | 90 | break; |
91 | 91 | default: |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | } |
112 | 112 | $page_after_login = api_get_setting('page_after_login'); |
113 | 113 | if (!empty($page_after_login)) { |
114 | - self::navigate(api_get_path(WEB_PATH) . $page_after_login); |
|
114 | + self::navigate(api_get_path(WEB_PATH).$page_after_login); |
|
115 | 115 | } |
116 | 116 | } |
117 | 117 | } |