@@ -52,7 +52,7 @@ |
||
52 | 52 | You have been logged out. |
53 | 53 | </div> |
54 | 54 | </div> |
55 | - <a href="<?php echo $www . 'user_portal.php'; ?>">Go to your portal</a> |
|
55 | + <a href="<?php echo $www.'user_portal.php'; ?>">Go to your portal</a> |
|
56 | 56 | <div id="footer"> |
57 | 57 | <img src="<?php echo $www ?>/custompages/images/footer.png" alt="footer"/> |
58 | 58 | </div> |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | ?> |
14 | 14 | <html> |
15 | 15 | <head> |
16 | - <title><?php echo custompages_get_lang('Registration');?></title> |
|
16 | + <title><?php echo custompages_get_lang('Registration'); ?></title> |
|
17 | 17 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
18 | 18 | <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
19 | 19 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | </div> |
40 | 40 | <div id="registration-form-box" class="form-box"> |
41 | 41 | <div class="block-form-login"> |
42 | - <?php echo $content['info']; ?> |
|
42 | + <?php echo $content['info']; ?> |
|
43 | 43 | </div> |
44 | 44 | </div> |
45 | 45 | <div id="footer"> |
@@ -19,26 +19,26 @@ discard block |
||
19 | 19 | use Doctrine\ORM\Tools\Console\ConsoleRunner; |
20 | 20 | use Symfony\Component\Console\Helper\HelperSet; |
21 | 21 | |
22 | -(@include_once __DIR__ . '/../vendor/autoload.php') || @include_once __DIR__ . '/../../../autoload.php'; |
|
22 | +(@include_once __DIR__.'/../vendor/autoload.php') || @include_once __DIR__.'/../../../autoload.php'; |
|
23 | 23 | |
24 | -$directories = array(getcwd(), getcwd() . DIRECTORY_SEPARATOR . 'config'); |
|
24 | +$directories = array(getcwd(), getcwd().DIRECTORY_SEPARATOR.'config'); |
|
25 | 25 | |
26 | 26 | $configFile = null; |
27 | 27 | foreach ($directories as $directory) { |
28 | - $configFile = $directory . DIRECTORY_SEPARATOR . 'cli-config.php'; |
|
28 | + $configFile = $directory.DIRECTORY_SEPARATOR.'cli-config.php'; |
|
29 | 29 | |
30 | 30 | if (file_exists($configFile)) { |
31 | 31 | break; |
32 | 32 | } |
33 | 33 | } |
34 | 34 | |
35 | -if ( ! file_exists($configFile)) { |
|
35 | +if (!file_exists($configFile)) { |
|
36 | 36 | ConsoleRunner::printCliConfigTemplate(); |
37 | 37 | exit(1); |
38 | 38 | } |
39 | 39 | |
40 | -if ( ! is_readable($configFile)) { |
|
41 | - echo 'Configuration file [' . $configFile . '] does not have read permission.' . "\n"; |
|
40 | +if (!is_readable($configFile)) { |
|
41 | + echo 'Configuration file ['.$configFile.'] does not have read permission.'."\n"; |
|
42 | 42 | exit(1); |
43 | 43 | } |
44 | 44 | |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | |
55 | 55 | $helperSet = require $configFile; |
56 | 56 | |
57 | -if ( ! ($helperSet instanceof HelperSet)) { |
|
57 | +if (!($helperSet instanceof HelperSet)) { |
|
58 | 58 | foreach ($GLOBALS as $helperSetCandidate) { |
59 | 59 | if ($helperSetCandidate instanceof HelperSet) { |
60 | 60 | $helperSet = $helperSetCandidate; |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | 'self_sent' => false, // this key states that we can't add user to this event through the admin panel |
24 | 24 | 'name_lang_var' => get_lang('PortalHomepageEdited'), |
25 | 25 | 'desc_lang_var' => get_lang('PortalHomepageEdited'), |
26 | - 'available_keyvars' => array (// keys used for the mail template |
|
26 | + 'available_keyvars' => array(// keys used for the mail template |
|
27 | 27 | 'url' => 'portal', |
28 | 28 | 'sitename' => 'sitename', |
29 | 29 | 'firstname' => 'firstname', |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | 'self_sent' => true, // this key states that we can't add user to this event through the admin panel |
46 | 46 | 'name_lang_var' => get_lang('UserRegistrationTitle'), |
47 | 47 | 'desc_lang_var' => get_lang('UserRegistrationComment'), |
48 | - 'available_keyvars' => array (// keys used for the mail template |
|
48 | + 'available_keyvars' => array(// keys used for the mail template |
|
49 | 49 | 'url' => 'portal', |
50 | 50 | 'sitename' => 'sitename', |
51 | 51 | 'firstname' => 'firstname', |
@@ -57,7 +57,7 @@ |
||
57 | 57 | //String used to search the user in ldap. %username will ber replaced by the username. |
58 | 58 | //See extldap_get_user_search_string() function below |
59 | 59 | // 'user_search' => 'sAMAccountName=%username%', // no () arround the string |
60 | - 'user_search' => 'uid=%username%', // no () arround the string |
|
60 | + 'user_search' => 'uid=%username%', // no () arround the string |
|
61 | 61 | //encoding used in ldap (most common are UTF-8 and ISO-8859-1 |
62 | 62 | 'encoding' => 'UTF-8', |
63 | 63 | //Set to true if user info have to be update at each login |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | $folder_icon = api_get_path(WEB_IMG_PATH).'icons/22/folder.png'; |
49 | 49 | $close_icon = api_get_path(WEB_IMG_PATH).'loading1.gif'; |
50 | 50 | |
51 | - $htmlHeadXtra[] = '<script type="text/javascript"> |
|
51 | + $htmlHeadXtra[] = '<script type="text/javascript"> |
|
52 | 52 | $(document).ready(function() { |
53 | 53 | $(".document_preview_container").hide(); |
54 | 54 | $(".document_preview").click(function() { |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | if ($displayMyCourseViewBySessionLink) { |
82 | 82 | $htmlHeadXtra[] = ' |
83 | 83 | <script type="text/javascript"> |
84 | - userId = ' . $userId . ' |
|
84 | + userId = ' . $userId.' |
|
85 | 85 | $(document).ready(function() { |
86 | 86 | changeMyCoursesView($.cookie("defaultMyCourseView"+userId)); |
87 | 87 | }); |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | function changeMyCoursesView(inView) |
94 | 94 | { |
95 | 95 | $.cookie("defaultMyCourseView"+userId, inView, { expires: 365 }); |
96 | - if (inView == ' . IndexManager::VIEW_BY_SESSION . ') { |
|
96 | + if (inView == ' . IndexManager::VIEW_BY_SESSION.') { |
|
97 | 97 | $("#viewBySession").addClass("btn-primary"); |
98 | 98 | $("#viewByDefault").removeClass("btn-primary"); |
99 | 99 | } else { |
@@ -153,16 +153,16 @@ discard block |
||
153 | 153 | if (isset($sessionInfo['courses']) && count($sessionInfo['courses']) == 1) { |
154 | 154 | $courseCode = $sessionInfo['courses'][0]['code']; |
155 | 155 | $courseInfo = api_get_course_info_by_id($sessionInfo['courses'][0]['real_id']); |
156 | - $courseUrl = $courseInfo['course_public_url'] . '?id_session=' . $sessionInfo['session_id']; |
|
157 | - header('Location:' . $courseUrl); |
|
156 | + $courseUrl = $courseInfo['course_public_url'].'?id_session='.$sessionInfo['session_id']; |
|
157 | + header('Location:'.$courseUrl); |
|
158 | 158 | exit; |
159 | 159 | } |
160 | 160 | |
161 | 161 | // Session has many courses. |
162 | 162 | if (isset($sessionInfo['session_id'])) { |
163 | - $url = api_get_path(WEB_CODE_PATH) . 'session/?session_id=' . $sessionInfo['session_id']; |
|
163 | + $url = api_get_path(WEB_CODE_PATH).'session/?session_id='.$sessionInfo['session_id']; |
|
164 | 164 | |
165 | - header('Location:' . $url); |
|
165 | + header('Location:'.$url); |
|
166 | 166 | exit; |
167 | 167 | } |
168 | 168 | } |
@@ -178,7 +178,7 @@ discard block |
||
178 | 178 | $courseInfo = api_get_course_info_by_id($courses[0]['real_id']); |
179 | 179 | if (!empty($courseInfo)) { |
180 | 180 | $courseUrl = $courseInfo['course_public_url']; |
181 | - header('Location:' . $courseUrl); |
|
181 | + header('Location:'.$courseUrl); |
|
182 | 182 | exit; |
183 | 183 | } |
184 | 184 | } |
@@ -18,7 +18,7 @@ |
||
18 | 18 | } |
19 | 19 | |
20 | 20 | if (!isset($_GET['id']) || empty($_GET['id'])) { |
21 | - $content = SystemAnnouncementManager::display_announcements_slider($visibility, $_GET['id']); |
|
21 | + $content = SystemAnnouncementManager::display_announcements_slider($visibility, $_GET['id']); |
|
22 | 22 | } else { |
23 | 23 | $content = SystemAnnouncementManager::displayAnnouncement($_GET['id'], $visibility); |
24 | 24 | } |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | $UserIsSubscribedToSession = SessionManager::isUserSubscribedAsStudent($lastSessionId, $user->getId()); |
43 | 43 | |
44 | 44 | if (!empty($lastSessionId) && $UserIsSubscribedToSession) { |
45 | - $urlWithSession = api_get_self() . '?' . http_build_query([ |
|
45 | + $urlWithSession = api_get_self().'?'.http_build_query([ |
|
46 | 46 | 'session_id' => $lastCourseAccess->getSessionId() |
47 | 47 | ]); |
48 | 48 | |
@@ -116,13 +116,13 @@ discard block |
||
116 | 116 | foreach ($learningPathList->list as $learningPathId => $learningPath) { |
117 | 117 | $courseData['stats'][] = [ |
118 | 118 | $learningPath['lp_name'], |
119 | - 'newscorm/lp_controller.php?' . http_build_query([ |
|
119 | + 'newscorm/lp_controller.php?'.http_build_query([ |
|
120 | 120 | 'action' => 'stats', |
121 | 121 | 'cidReq' => $course->getCode(), |
122 | 122 | 'id_session' => $currentSession->getId(), |
123 | 123 | 'gidReq' => 0, |
124 | 124 | 'lp_id' => $learningPathId |
125 | - ]) . api_get_cidreq() |
|
125 | + ]).api_get_cidreq() |
|
126 | 126 | ]; |
127 | 127 | } |
128 | 128 |
@@ -42,8 +42,8 @@ |
||
42 | 42 | |
43 | 43 | $name = _xrds_strip_namespace($name); |
44 | 44 | if ($name == 'SERVICE') { |
45 | - if (in_array(OPENID_NS_2_0 .'/signon', $xrds_current_service['types']) || |
|
46 | - in_array(OPENID_NS_2_0 .'/server', $xrds_current_service['types'])) { |
|
45 | + if (in_array(OPENID_NS_2_0.'/signon', $xrds_current_service['types']) || |
|
46 | + in_array(OPENID_NS_2_0.'/server', $xrds_current_service['types'])) { |
|
47 | 47 | $xrds_current_service['version'] = 2; |
48 | 48 | } |
49 | 49 | elseif (in_array(OPENID_NS_1_1, $xrds_current_service['types']) || |