@@ -9,10 +9,10 @@ discard block |
||
| 9 | 9 | * Code |
| 10 | 10 | */ |
| 11 | 11 | // Diffie-Hellman Key Exchange Default Value. |
| 12 | -define('OPENID_DH_DEFAULT_MOD', '155172898181473697471232257763715539915724801' . |
|
| 13 | - '966915404479707795314057629378541917580651227423698188993727816152646631' . |
|
| 14 | - '438561595825688188889951272158842675419950341258706556549803580104870537' . |
|
| 15 | - '681476726513255747040765857479291291572334510643245094715007229621094194' . |
|
| 12 | +define('OPENID_DH_DEFAULT_MOD', '155172898181473697471232257763715539915724801'. |
|
| 13 | + '966915404479707795314057629378541917580651227423698188993727816152646631'. |
|
| 14 | + '438561595825688188889951272158842675419950341258706556549803580104870537'. |
|
| 15 | + '681476726513255747040765857479291291572334510643245094715007229621094194'. |
|
| 16 | 16 | '349783925984760375594985848253359305585439638443'); |
| 17 | 17 | |
| 18 | 18 | // Constants for Diffie-Hellman key exchange computations. |
@@ -32,10 +32,10 @@ discard block |
||
| 32 | 32 | function openid_redirect_http($url, $message) { |
| 33 | 33 | $query = array(); |
| 34 | 34 | foreach ($message as $key => $val) { |
| 35 | - $query[] = $key . '=' . urlencode($val); |
|
| 35 | + $query[] = $key.'='.urlencode($val); |
|
| 36 | 36 | } |
| 37 | 37 | $sep = (strpos($url, '?') === FALSE) ? '?' : '&'; |
| 38 | - header('Location: ' . $url . $sep . implode('&', $query), TRUE, 302); |
|
| 38 | + header('Location: '.$url.$sep.implode('&', $query), TRUE, 302); |
|
| 39 | 39 | //exit; |
| 40 | 40 | } |
| 41 | 41 | |
@@ -44,12 +44,12 @@ discard block |
||
| 44 | 44 | * This function should be deprecated for 1.8.6.2 needs documentation |
| 45 | 45 | */ |
| 46 | 46 | function openid_redirect($url, $message) { |
| 47 | - $output = '<html><head><title>' . get_lang('OpenIDRedirect') . "</title></head>\n<body>"; |
|
| 48 | - $output .= '<form method="post" action="' . $url . '" id="openid-redirect-form">'; |
|
| 47 | + $output = '<html><head><title>'.get_lang('OpenIDRedirect')."</title></head>\n<body>"; |
|
| 48 | + $output .= '<form method="post" action="'.$url.'" id="openid-redirect-form">'; |
|
| 49 | 49 | foreach ($message as $key => $value) { |
| 50 | - $output .='<input type="hidden" name="' . $key . '" value="' . $value . '">'; |
|
| 50 | + $output .= '<input type="hidden" name="'.$key.'" value="'.$value.'">'; |
|
| 51 | 51 | } |
| 52 | - $output .= '<noscript><input type="submit" name="submit" value="' . get_lang('Send') . '"/></noscript>'; |
|
| 52 | + $output .= '<noscript><input type="submit" name="submit" value="'.get_lang('Send').'"/></noscript>'; |
|
| 53 | 53 | $output .= '</form>'; |
| 54 | 54 | $output .= '<script type="text/javascript">document.getElementById("openid-redirect-form").submit();</script>'; |
| 55 | 55 | $output .= "</body></html>"; |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | $normalized_url = $url; |
| 95 | 95 | |
| 96 | 96 | if (stristr($url, '://') === FALSE) { |
| 97 | - $normalized_url = 'http://' . $url; |
|
| 97 | + $normalized_url = 'http://'.$url; |
|
| 98 | 98 | } |
| 99 | 99 | |
| 100 | 100 | if (substr_count($normalized_url, '/') < 3) { |
@@ -133,7 +133,7 @@ discard block |
||
| 133 | 133 | if ($encoded_message != '') { |
| 134 | 134 | $encoded_message .= '&'; |
| 135 | 135 | } |
| 136 | - $encoded_message .= rawurlencode(trim($parts[0])) . '=' . rawurlencode(trim($parts[1])); |
|
| 136 | + $encoded_message .= rawurlencode(trim($parts[0])).'='.rawurlencode(trim($parts[1])); |
|
| 137 | 137 | } |
| 138 | 138 | } |
| 139 | 139 | |
@@ -164,10 +164,10 @@ discard block |
||
| 164 | 164 | */ |
| 165 | 165 | function _openid_nonce() { |
| 166 | 166 | // YYYY-MM-DDThh:mm:ssTZD UTC, plus some optional extra unique chars |
| 167 | - return gmstrftime('%Y-%m-%dT%H:%M:%S%Z') . |
|
| 168 | - chr(mt_rand(0, 25) + 65) . |
|
| 169 | - chr(mt_rand(0, 25) + 65) . |
|
| 170 | - chr(mt_rand(0, 25) + 65) . |
|
| 167 | + return gmstrftime('%Y-%m-%dT%H:%M:%S%Z'). |
|
| 168 | + chr(mt_rand(0, 25) + 65). |
|
| 169 | + chr(mt_rand(0, 25) + 65). |
|
| 170 | + chr(mt_rand(0, 25) + 65). |
|
| 171 | 171 | chr(mt_rand(0, 25) + 65); |
| 172 | 172 | } |
| 173 | 173 | |
@@ -176,7 +176,7 @@ discard block |
||
| 176 | 176 | */ |
| 177 | 177 | function _openid_link_href($rel, $html) { |
| 178 | 178 | $rel = preg_quote($rel); |
| 179 | - preg_match('|<link\s+rel=["\'](.*)' . $rel . '(.*)["\'](.*)/?>|iU', $html, $matches); |
|
| 179 | + preg_match('|<link\s+rel=["\'](.*)'.$rel.'(.*)["\'](.*)/?>|iU', $html, $matches); |
|
| 180 | 180 | if (isset($matches[3])) { |
| 181 | 181 | preg_match('|href=["\']([^"]+)["\']|iU', $matches[0], $href); |
| 182 | 182 | return trim($href[1]); |
@@ -188,7 +188,7 @@ discard block |
||
| 188 | 188 | * Pull the http-equiv attribute out of an html meta element |
| 189 | 189 | */ |
| 190 | 190 | function _openid_meta_httpequiv($equiv, $html) { |
| 191 | - preg_match('|<meta\s+http-equiv=["\']' . $equiv . '["\'](.*)/?>|iU', $html, $matches); |
|
| 191 | + preg_match('|<meta\s+http-equiv=["\']'.$equiv.'["\'](.*)/?>|iU', $html, $matches); |
|
| 192 | 192 | if (isset($matches[1])) { |
| 193 | 193 | preg_match('|content=["\']([^"]+)["\']|iU', $matches[1], $content); |
| 194 | 194 | return $content[1]; |
@@ -209,8 +209,8 @@ discard block |
||
| 209 | 209 | $sign_data = array(); |
| 210 | 210 | |
| 211 | 211 | foreach ($keys_to_sign as $key) { |
| 212 | - if (isset($message_array['openid.' . $key])) { |
|
| 213 | - $sign_data[$key] = $message_array['openid.' . $key]; |
|
| 212 | + if (isset($message_array['openid.'.$key])) { |
|
| 213 | + $sign_data[$key] = $message_array['openid.'.$key]; |
|
| 214 | 214 | } |
| 215 | 215 | } |
| 216 | 216 | |
@@ -229,8 +229,8 @@ discard block |
||
| 229 | 229 | $key = str_pad($key, OPENID_SHA1_BLOCKSIZE, chr(0x00)); |
| 230 | 230 | $ipad = str_repeat(chr(0x36), OPENID_SHA1_BLOCKSIZE); |
| 231 | 231 | $opad = str_repeat(chr(0x5c), OPENID_SHA1_BLOCKSIZE); |
| 232 | - $hash1 = _openid_sha1(($key ^ $ipad) . $text, true); |
|
| 233 | - $hmac = _openid_sha1(($key ^ $opad) . $hash1, true); |
|
| 232 | + $hash1 = _openid_sha1(($key ^ $ipad).$text, true); |
|
| 233 | + $hmac = _openid_sha1(($key ^ $opad).$hash1, true); |
|
| 234 | 234 | |
| 235 | 235 | return $hmac; |
| 236 | 236 | } |
@@ -337,7 +337,7 @@ discard block |
||
| 337 | 337 | } |
| 338 | 338 | |
| 339 | 339 | do { |
| 340 | - $bytes = "\x00" . _openid_get_bytes($nbytes); |
|
| 340 | + $bytes = "\x00"._openid_get_bytes($nbytes); |
|
| 341 | 341 | $n = _openid_dh_binary_to_long($bytes); |
| 342 | 342 | // Keep looping if this value is in the low duplicated range. |
| 343 | 343 | } while (bccomp($n, $duplicate) < 0); |
@@ -61,8 +61,9 @@ |
||
| 61 | 61 | */ |
| 62 | 62 | function _openid_is_xri($identifier) { |
| 63 | 63 | $firstchar = substr($identifier, 0, 1); |
| 64 | - if ($firstchar == "@" || $firstchar == "=") |
|
| 65 | - return TRUE; |
|
| 64 | + if ($firstchar == "@" || $firstchar == "=") { |
|
| 65 | + return TRUE; |
|
| 66 | + } |
|
| 66 | 67 | |
| 67 | 68 | if (stristr($identifier, 'xri://') !== FALSE) { |
| 68 | 69 | return TRUE; |
@@ -242,6 +242,9 @@ discard block |
||
| 242 | 242 | return $hmac; |
| 243 | 243 | } |
| 244 | 244 | |
| 245 | +/** |
|
| 246 | + * @param string|false $text |
|
| 247 | + */ |
|
| 245 | 248 | function _openid_sha1($text) { |
| 246 | 249 | $hex = sha1($text); |
| 247 | 250 | $raw = ''; |
@@ -404,6 +407,10 @@ discard block |
||
| 404 | 407 | */ |
| 405 | 408 | if (!function_exists('bcpowmod')) { |
| 406 | 409 | |
| 410 | + /** |
|
| 411 | + * @param string $exp |
|
| 412 | + * @param string $mod |
|
| 413 | + */ |
|
| 407 | 414 | function bcpowmod($base, $exp, $mod) { |
| 408 | 415 | $square = bcmod($base, $mod); |
| 409 | 416 | $result = 1; |
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | $cidReset = true; |
| 12 | 12 | require_once '../inc/global.inc.php'; |
| 13 | 13 | $this_section = SECTION_COURSES; |
| 14 | -$course_id = isset($_GET['course_id']) ? intval($_GET['course_id']) : null; |
|
| 14 | +$course_id = isset($_GET['course_id']) ? intval($_GET['course_id']) : null; |
|
| 15 | 15 | $session_id = isset($_GET['session_id']) ? intval($_GET['session_id']) : null; |
| 16 | 16 | $user_id = api_get_user_id(); |
| 17 | 17 | |
@@ -684,7 +684,7 @@ |
||
| 684 | 684 | |
| 685 | 685 | foreach ($user_data as $key => $value) { |
| 686 | 686 | if (substr($key, 0, 6) == 'extra_') { //an extra field |
| 687 | - continue; |
|
| 687 | + continue; |
|
| 688 | 688 | } elseif (strpos($key, 'remove_extra_') !== false) { |
| 689 | 689 | } else { |
| 690 | 690 | if (in_array($key, $available_values_to_modify)) { |
@@ -101,7 +101,7 @@ discard block |
||
| 101 | 101 | $htmlHeadXtra[] = '<script> |
| 102 | 102 | $(document).ready(function() { |
| 103 | 103 | |
| 104 | - var address = "' . $user_data['address'] . '"; |
|
| 104 | + var address = "' . $user_data['address'].'"; |
|
| 105 | 105 | initializeGeo(address, false); |
| 106 | 106 | |
| 107 | 107 | $("#geolocalization").on("click", function() { |
@@ -133,7 +133,7 @@ discard block |
||
| 133 | 133 | }; |
| 134 | 134 | |
| 135 | 135 | var geoError = function(error) { |
| 136 | - alert("Geocode ' . get_lang('Error') . ': " + error); |
|
| 136 | + alert("Geocode ' . get_lang('Error').': " + error); |
|
| 137 | 137 | }; |
| 138 | 138 | |
| 139 | 139 | var geoOptions = { |
@@ -184,11 +184,11 @@ discard block |
||
| 184 | 184 | infowindow.open(map, marker); |
| 185 | 185 | }); |
| 186 | 186 | } else { |
| 187 | - alert("' . get_lang("NotFound") . '"); |
|
| 187 | + alert("' . get_lang("NotFound").'"); |
|
| 188 | 188 | } |
| 189 | 189 | |
| 190 | 190 | } else { |
| 191 | - alert("Geocode ' . get_lang('Error') . ': " + status); |
|
| 191 | + alert("Geocode ' . get_lang('Error').': " + status); |
|
| 192 | 192 | } |
| 193 | 193 | }); |
| 194 | 194 | } |
@@ -213,10 +213,10 @@ discard block |
||
| 213 | 213 | if (api_is_western_name_order()) { |
| 214 | 214 | // FIRST NAME and LAST NAME |
| 215 | 215 | $form->addElement('text', 'firstname', get_lang('FirstName'), array('size' => 40)); |
| 216 | - $form->addElement('text', 'lastname', get_lang('LastName'), array('size' => 40)); |
|
| 216 | + $form->addElement('text', 'lastname', get_lang('LastName'), array('size' => 40)); |
|
| 217 | 217 | } else { |
| 218 | 218 | // LAST NAME and FIRST NAME |
| 219 | - $form->addElement('text', 'lastname', get_lang('LastName'), array('size' => 40)); |
|
| 219 | + $form->addElement('text', 'lastname', get_lang('LastName'), array('size' => 40)); |
|
| 220 | 220 | $form->addElement('text', 'firstname', get_lang('FirstName'), array('size' => 40)); |
| 221 | 221 | } |
| 222 | 222 | if (api_get_setting('profile', 'name') !== 'true') { |
@@ -225,7 +225,7 @@ discard block |
||
| 225 | 225 | $form->applyFilter(array('lastname', 'firstname'), 'stripslashes'); |
| 226 | 226 | $form->applyFilter(array('lastname', 'firstname'), 'trim'); |
| 227 | 227 | $form->applyFilter(array('lastname', 'firstname'), 'html_filter'); |
| 228 | -$form->addRule('lastname' , get_lang('ThisFieldIsRequired'), 'required'); |
|
| 228 | +$form->addRule('lastname', get_lang('ThisFieldIsRequired'), 'required'); |
|
| 229 | 229 | $form->addRule('firstname', get_lang('ThisFieldIsRequired'), 'required'); |
| 230 | 230 | |
| 231 | 231 | // USERNAME |
@@ -270,7 +270,7 @@ discard block |
||
| 270 | 270 | $form->freeze('email'); |
| 271 | 271 | } |
| 272 | 272 | |
| 273 | -if (api_get_setting('registration', 'email') == 'true' && api_get_setting('profile', 'email') == 'true') { |
|
| 273 | +if (api_get_setting('registration', 'email') == 'true' && api_get_setting('profile', 'email') == 'true') { |
|
| 274 | 274 | $form->applyFilter('email', 'stripslashes'); |
| 275 | 275 | $form->applyFilter('email', 'trim'); |
| 276 | 276 | $form->addRule('email', get_lang('ThisFieldIsRequired'), 'required'); |
@@ -449,7 +449,7 @@ discard block |
||
| 449 | 449 | |
| 450 | 450 | // the $jquery_ready_content variable collects all functions that |
| 451 | 451 | // will be load in the $(document).ready javascript function |
| 452 | -$htmlHeadXtra[] ='<script> |
|
| 452 | +$htmlHeadXtra[] = '<script> |
|
| 453 | 453 | $(document).ready(function(){ |
| 454 | 454 | '.$jquery_ready_content.' |
| 455 | 455 | }); |
@@ -9,5 +9,5 @@ |
||
| 9 | 9 | require_once('authcas.php'); |
| 10 | 10 | global $cas_auth_ver, $cas_auth_server, $cas_auth_port, $cas_auth_uri; |
| 11 | 11 | |
| 12 | -phpCAS::client($cas_auth_ver,$cas_auth_server,$cas_auth_port,$cas_auth_uri); |
|
| 12 | +phpCAS::client($cas_auth_ver, $cas_auth_server, $cas_auth_port, $cas_auth_uri); |
|
| 13 | 13 | phpCAS::logout(); |
@@ -39,7 +39,7 @@ |
||
| 39 | 39 | $firstpage = $_GET['firstpage']; |
| 40 | 40 | setcookie("GotoCourse", $firstpage); |
| 41 | 41 | } |
| 42 | - if (!is_object($PHPCAS_CLIENT) ) { |
|
| 42 | + if (!is_object($PHPCAS_CLIENT)) { |
|
| 43 | 43 | phpCAS::client( |
| 44 | 44 | $cas_auth_ver, |
| 45 | 45 | $cas_auth_server, |
@@ -203,7 +203,7 @@ discard block |
||
| 203 | 203 | $limit |
| 204 | 204 | ); |
| 205 | 205 | } else { |
| 206 | - header('Location: ' . api_get_self()); |
|
| 206 | + header('Location: '.api_get_self()); |
|
| 207 | 207 | } |
| 208 | 208 | break; |
| 209 | 209 | case 'display_random_courses': |
@@ -278,7 +278,7 @@ discard block |
||
| 278 | 278 | $continueWithSubscription = SequenceResourceManager::checkSequenceAreCompleted($requirementsData); |
| 279 | 279 | |
| 280 | 280 | if (!$continueWithSubscription) { |
| 281 | - header('Location: ' . api_get_path(WEB_CODE_PATH) . 'auth/courses.php'); |
|
| 281 | + header('Location: '.api_get_path(WEB_CODE_PATH).'auth/courses.php'); |
|
| 282 | 282 | exit; |
| 283 | 283 | } |
| 284 | 284 | } |
@@ -296,16 +296,16 @@ discard block |
||
| 296 | 296 | |
| 297 | 297 | if ($count <= 0) { |
| 298 | 298 | // no course in session -> return to catalog |
| 299 | - $url = api_get_path(WEB_CODE_PATH) . 'auth/courses.php'; |
|
| 299 | + $url = api_get_path(WEB_CODE_PATH).'auth/courses.php'; |
|
| 300 | 300 | } elseif ($count == 1) { |
| 301 | 301 | // only one course, so redirect directly to this course |
| 302 | 302 | foreach ($coursesList as $course) { |
| 303 | - $url = api_get_path(WEB_COURSE_PATH) . $course['directory'] . '/index.php?id_session=' . intval($_GET['session_id']); |
|
| 303 | + $url = api_get_path(WEB_COURSE_PATH).$course['directory'].'/index.php?id_session='.intval($_GET['session_id']); |
|
| 304 | 304 | } |
| 305 | 305 | } else { |
| 306 | - $url = api_get_path(WEB_CODE_PATH) . 'session/index.php?session_id=' . intval($_GET['session_id']); |
|
| 306 | + $url = api_get_path(WEB_CODE_PATH).'session/index.php?session_id='.intval($_GET['session_id']); |
|
| 307 | 307 | } |
| 308 | - header('Location: ' . $url); |
|
| 308 | + header('Location: '.$url); |
|
| 309 | 309 | exit; |
| 310 | 310 | } |
| 311 | 311 | //else show error message? |
@@ -171,28 +171,53 @@ discard block |
||
| 171 | 171 | } |
| 172 | 172 | |
| 173 | 173 | switch ($action) { |
| 174 | - case 'subscribe_user_with_password': |
|
| 175 | - $courses_controller->subscribe_user( |
|
| 176 | - isset($_POST['subscribe_user_with_password']) ? $_POST['subscribe_user_with_password'] : '', |
|
| 177 | - isset($_POST['search_term']) ? $_POST['search_term'] : '', |
|
| 178 | - isset($_POST['category_code']) ? $_POST['category_code'] : '' |
|
| 179 | - ); |
|
| 180 | - break; |
|
| 181 | - case 'createcoursecategory': |
|
| 182 | - $courses_controller->categories_list($action); |
|
| 183 | - break; |
|
| 184 | - case 'deletecoursecategory': |
|
| 185 | - $courses_controller->courses_list($action); |
|
| 186 | - break; |
|
| 187 | - case 'sortmycourses': |
|
| 188 | - $courses_controller->courses_list($action); |
|
| 189 | - break; |
|
| 190 | - case 'subscribe': |
|
| 191 | - if (!$user_can_view_page) { |
|
| 192 | - api_not_allowed(true); |
|
| 193 | - } |
|
| 194 | - |
|
| 195 | - if (!CoursesAndSessionsCatalog::is(CATALOG_SESSIONS)) { |
|
| 174 | + case 'subscribe_user_with_password': |
|
| 175 | + $courses_controller->subscribe_user( |
|
| 176 | + isset($_POST['subscribe_user_with_password']) ? $_POST['subscribe_user_with_password'] : '', |
|
| 177 | + isset($_POST['search_term']) ? $_POST['search_term'] : '', |
|
| 178 | + isset($_POST['category_code']) ? $_POST['category_code'] : '' |
|
| 179 | + ); |
|
| 180 | + break; |
|
| 181 | + case 'createcoursecategory': |
|
| 182 | + $courses_controller->categories_list($action); |
|
| 183 | + break; |
|
| 184 | + case 'deletecoursecategory': |
|
| 185 | + $courses_controller->courses_list($action); |
|
| 186 | + break; |
|
| 187 | + case 'sortmycourses': |
|
| 188 | + $courses_controller->courses_list($action); |
|
| 189 | + break; |
|
| 190 | + case 'subscribe': |
|
| 191 | + if (!$user_can_view_page) { |
|
| 192 | + api_not_allowed(true); |
|
| 193 | + } |
|
| 194 | + |
|
| 195 | + if (!CoursesAndSessionsCatalog::is(CATALOG_SESSIONS)) { |
|
| 196 | + $courses_controller->courses_categories( |
|
| 197 | + $action, |
|
| 198 | + $categoryCode, |
|
| 199 | + null, |
|
| 200 | + null, |
|
| 201 | + null, |
|
| 202 | + $limit |
|
| 203 | + ); |
|
| 204 | + } else { |
|
| 205 | + header('Location: ' . api_get_self()); |
|
| 206 | + exit; |
|
| 207 | + } |
|
| 208 | + break; |
|
| 209 | + case 'display_random_courses': |
|
| 210 | + if (!$user_can_view_page) { |
|
| 211 | + api_not_allowed(true); |
|
| 212 | + } |
|
| 213 | + |
|
| 214 | + $courses_controller->courses_categories($action); |
|
| 215 | + break; |
|
| 216 | + case 'display_courses': |
|
| 217 | + if (!$user_can_view_page) { |
|
| 218 | + api_not_allowed(true); |
|
| 219 | + } |
|
| 220 | + |
|
| 196 | 221 | $courses_controller->courses_categories( |
| 197 | 222 | $action, |
| 198 | 223 | $categoryCode, |
@@ -201,127 +226,102 @@ discard block |
||
| 201 | 226 | null, |
| 202 | 227 | $limit |
| 203 | 228 | ); |
| 204 | - } else { |
|
| 205 | - header('Location: ' . api_get_self()); |
|
| 206 | - exit; |
|
| 207 | - } |
|
| 208 | - break; |
|
| 209 | - case 'display_random_courses': |
|
| 210 | - if (!$user_can_view_page) { |
|
| 211 | - api_not_allowed(true); |
|
| 212 | - } |
|
| 213 | - |
|
| 214 | - $courses_controller->courses_categories($action); |
|
| 215 | - break; |
|
| 216 | - case 'display_courses': |
|
| 217 | - if (!$user_can_view_page) { |
|
| 218 | - api_not_allowed(true); |
|
| 219 | - } |
|
| 220 | - |
|
| 221 | - $courses_controller->courses_categories( |
|
| 222 | - $action, |
|
| 223 | - $categoryCode, |
|
| 224 | - null, |
|
| 225 | - null, |
|
| 226 | - null, |
|
| 227 | - $limit |
|
| 228 | - ); |
|
| 229 | - break; |
|
| 230 | - case 'display_sessions': |
|
| 231 | - if (!$user_can_view_page) { |
|
| 232 | - api_not_allowed(true); |
|
| 233 | - } |
|
| 234 | - |
|
| 235 | - $courses_controller->sessionsList($action, $nameTools, $limit); |
|
| 236 | - break; |
|
| 237 | - case 'subscribe_to_session': |
|
| 238 | - if (!$user_can_view_page) { |
|
| 239 | - api_not_allowed(true); |
|
| 240 | - } |
|
| 241 | - |
|
| 242 | - $userId = api_get_user_id(); |
|
| 243 | - $confirmed = isset($_GET['confirm']); |
|
| 244 | - $sessionId = intval($_GET['session_id']); |
|
| 245 | - |
|
| 246 | - if (empty($userId)) { |
|
| 247 | - api_not_allowed(); |
|
| 248 | - exit; |
|
| 249 | - } |
|
| 250 | - |
|
| 251 | - if (!$confirmed) { |
|
| 252 | - $template = new Template(null, false, false, false, false, false); |
|
| 253 | - $template->assign('session_id', $sessionId); |
|
| 254 | - |
|
| 255 | - $layout = $template->get_template('auth/confirm_session_subscription.tpl'); |
|
| 256 | - |
|
| 257 | - echo $template->fetch($layout); |
|
| 258 | - exit; |
|
| 259 | - } |
|
| 260 | - |
|
| 261 | - $registrationAllowed = api_get_setting('catalog_allow_session_auto_subscription'); |
|
| 262 | - if ($registrationAllowed === 'true') { |
|
| 263 | - $entityManager = Database::getManager(); |
|
| 264 | - $repository = $entityManager->getRepository('ChamiloCoreBundle:SequenceResource'); |
|
| 265 | - |
|
| 266 | - $sequences = $repository->getRequirements( |
|
| 267 | - $sessionId, |
|
| 268 | - SequenceResource::SESSION_TYPE |
|
| 269 | - ); |
|
| 229 | + break; |
|
| 230 | + case 'display_sessions': |
|
| 231 | + if (!$user_can_view_page) { |
|
| 232 | + api_not_allowed(true); |
|
| 233 | + } |
|
| 234 | + |
|
| 235 | + $courses_controller->sessionsList($action, $nameTools, $limit); |
|
| 236 | + break; |
|
| 237 | + case 'subscribe_to_session': |
|
| 238 | + if (!$user_can_view_page) { |
|
| 239 | + api_not_allowed(true); |
|
| 240 | + } |
|
| 241 | + |
|
| 242 | + $userId = api_get_user_id(); |
|
| 243 | + $confirmed = isset($_GET['confirm']); |
|
| 244 | + $sessionId = intval($_GET['session_id']); |
|
| 270 | 245 | |
| 271 | - if (count($sequences) > 0) { |
|
| 272 | - $requirementsData = SequenceResourceManager::checkRequirementsForUser( |
|
| 273 | - $sequences, |
|
| 274 | - SequenceResource::SESSION_TYPE, |
|
| 275 | - $userId |
|
| 246 | + if (empty($userId)) { |
|
| 247 | + api_not_allowed(); |
|
| 248 | + exit; |
|
| 249 | + } |
|
| 250 | + |
|
| 251 | + if (!$confirmed) { |
|
| 252 | + $template = new Template(null, false, false, false, false, false); |
|
| 253 | + $template->assign('session_id', $sessionId); |
|
| 254 | + |
|
| 255 | + $layout = $template->get_template('auth/confirm_session_subscription.tpl'); |
|
| 256 | + |
|
| 257 | + echo $template->fetch($layout); |
|
| 258 | + exit; |
|
| 259 | + } |
|
| 260 | + |
|
| 261 | + $registrationAllowed = api_get_setting('catalog_allow_session_auto_subscription'); |
|
| 262 | + if ($registrationAllowed === 'true') { |
|
| 263 | + $entityManager = Database::getManager(); |
|
| 264 | + $repository = $entityManager->getRepository('ChamiloCoreBundle:SequenceResource'); |
|
| 265 | + |
|
| 266 | + $sequences = $repository->getRequirements( |
|
| 267 | + $sessionId, |
|
| 268 | + SequenceResource::SESSION_TYPE |
|
| 276 | 269 | ); |
| 277 | 270 | |
| 278 | - $continueWithSubscription = SequenceResourceManager::checkSequenceAreCompleted($requirementsData); |
|
| 271 | + if (count($sequences) > 0) { |
|
| 272 | + $requirementsData = SequenceResourceManager::checkRequirementsForUser( |
|
| 273 | + $sequences, |
|
| 274 | + SequenceResource::SESSION_TYPE, |
|
| 275 | + $userId |
|
| 276 | + ); |
|
| 277 | + |
|
| 278 | + $continueWithSubscription = SequenceResourceManager::checkSequenceAreCompleted($requirementsData); |
|
| 279 | 279 | |
| 280 | - if (!$continueWithSubscription) { |
|
| 281 | - header('Location: ' . api_get_path(WEB_CODE_PATH) . 'auth/courses.php'); |
|
| 282 | - exit; |
|
| 280 | + if (!$continueWithSubscription) { |
|
| 281 | + header('Location: ' . api_get_path(WEB_CODE_PATH) . 'auth/courses.php'); |
|
| 282 | + exit; |
|
| 283 | + } |
|
| 283 | 284 | } |
| 284 | - } |
|
| 285 | 285 | |
| 286 | - SessionManager::subscribe_users_to_session( |
|
| 287 | - $_GET['session_id'], |
|
| 288 | - array($userId), |
|
| 289 | - SESSION_VISIBLE_READ_ONLY, |
|
| 290 | - false |
|
| 291 | - ); |
|
| 286 | + SessionManager::subscribe_users_to_session( |
|
| 287 | + $_GET['session_id'], |
|
| 288 | + array($userId), |
|
| 289 | + SESSION_VISIBLE_READ_ONLY, |
|
| 290 | + false |
|
| 291 | + ); |
|
| 292 | 292 | |
| 293 | - $coursesList = SessionManager::get_course_list_by_session_id($_GET['session_id']); |
|
| 294 | - $count = count($coursesList); |
|
| 295 | - $url = ''; |
|
| 296 | - |
|
| 297 | - if ($count <= 0) { |
|
| 298 | - // no course in session -> return to catalog |
|
| 299 | - $url = api_get_path(WEB_CODE_PATH) . 'auth/courses.php'; |
|
| 300 | - } elseif ($count == 1) { |
|
| 301 | - // only one course, so redirect directly to this course |
|
| 302 | - foreach ($coursesList as $course) { |
|
| 303 | - $url = api_get_path(WEB_COURSE_PATH) . $course['directory'] . '/index.php?id_session=' . intval($_GET['session_id']); |
|
| 293 | + $coursesList = SessionManager::get_course_list_by_session_id($_GET['session_id']); |
|
| 294 | + $count = count($coursesList); |
|
| 295 | + $url = ''; |
|
| 296 | + |
|
| 297 | + if ($count <= 0) { |
|
| 298 | + // no course in session -> return to catalog |
|
| 299 | + $url = api_get_path(WEB_CODE_PATH) . 'auth/courses.php'; |
|
| 300 | + } elseif ($count == 1) { |
|
| 301 | + // only one course, so redirect directly to this course |
|
| 302 | + foreach ($coursesList as $course) { |
|
| 303 | + $url = api_get_path(WEB_COURSE_PATH) . $course['directory'] . '/index.php?id_session=' . intval($_GET['session_id']); |
|
| 304 | + } |
|
| 305 | + } else { |
|
| 306 | + $url = api_get_path(WEB_CODE_PATH) . 'session/index.php?session_id=' . intval($_GET['session_id']); |
|
| 304 | 307 | } |
| 305 | - } else { |
|
| 306 | - $url = api_get_path(WEB_CODE_PATH) . 'session/index.php?session_id=' . intval($_GET['session_id']); |
|
| 308 | + header('Location: ' . $url); |
|
| 309 | + exit; |
|
| 307 | 310 | } |
| 308 | - header('Location: ' . $url); |
|
| 309 | - exit; |
|
| 310 | - } |
|
| 311 | - //else show error message? |
|
| 312 | - break; |
|
| 313 | - case 'search_tag': |
|
| 314 | - if (!$user_can_view_page) { |
|
| 315 | - api_not_allowed(true); |
|
| 316 | - } |
|
| 317 | - |
|
| 318 | - $courses_controller->sessionsListByCoursesTag($limit); |
|
| 319 | - break; |
|
| 320 | - case 'search_session': |
|
| 321 | - if (!$user_can_view_page) { |
|
| 322 | - api_not_allowed(true); |
|
| 323 | - } |
|
| 324 | - |
|
| 325 | - $courses_controller->sessionListBySearch($limit); |
|
| 326 | - break; |
|
| 311 | + //else show error message? |
|
| 312 | + break; |
|
| 313 | + case 'search_tag': |
|
| 314 | + if (!$user_can_view_page) { |
|
| 315 | + api_not_allowed(true); |
|
| 316 | + } |
|
| 317 | + |
|
| 318 | + $courses_controller->sessionsListByCoursesTag($limit); |
|
| 319 | + break; |
|
| 320 | + case 'search_session': |
|
| 321 | + if (!$user_can_view_page) { |
|
| 322 | + api_not_allowed(true); |
|
| 323 | + } |
|
| 324 | + |
|
| 325 | + $courses_controller->sessionListBySearch($limit); |
|
| 326 | + break; |
|
| 327 | 327 | } |
@@ -41,7 +41,7 @@ |
||
| 41 | 41 | |
| 42 | 42 | $msg .= '<div class="well_login">'; |
| 43 | 43 | $msg .= $form->return_form(); |
| 44 | - $msg .='</div>'; |
|
| 44 | + $msg .= '</div>'; |
|
| 45 | 45 | if (api_is_cas_activated()) {
|
| 46 | 46 | $msg .= "</div>"; |
| 47 | 47 | } |
@@ -5,7 +5,7 @@ |
||
| 5 | 5 | $url = api_get_path(WEB_PATH).'main/auth/conditional_login/complete_phone_number.php'; |
| 6 | 6 | |
| 7 | 7 | if (! isset($_SESSION['conditional_login']['uid'])) |
| 8 | - die("Not Authorised"); |
|
| 8 | + die("Not Authorised"); |
|
| 9 | 9 | ?> |
| 10 | 10 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
| 11 | 11 | <html lang="fr" xml:lang="fr" xmlns="http://www.w3.org/1999/xhtml"> |
@@ -2,9 +2,9 @@ discard block |
||
| 2 | 2 | /* For licensing terms, see /license.txt */ |
| 3 | 3 | |
| 4 | 4 | require_once dirname(__FILE__).'/../../inc/global.inc.php'; |
| 5 | -$url = api_get_path(WEB_PATH).'main/auth/conditional_login/complete_phone_number.php'; |
|
| 5 | +$url = api_get_path(WEB_PATH).'main/auth/conditional_login/complete_phone_number.php'; |
|
| 6 | 6 | |
| 7 | -if (! isset($_SESSION['conditional_login']['uid'])) |
|
| 7 | +if (!isset($_SESSION['conditional_login']['uid'])) |
|
| 8 | 8 | die("Not Authorised"); |
| 9 | 9 | ?> |
| 10 | 10 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | </body> |
| 21 | 21 | </html> |
| 22 | 22 | <?php |
| 23 | -if (isset($_POST['submit'])){ |
|
| 23 | +if (isset($_POST['submit'])) { |
|
| 24 | 24 | $u = api_get_user_info($_SESSION['conditional_login']['uid']); |
| 25 | 25 | $u['phone'] = $_POST['phone_number']; |
| 26 | 26 | $password = null; // we don't want to change the password |
@@ -4,8 +4,9 @@ |
||
| 4 | 4 | require_once dirname(__FILE__).'/../../inc/global.inc.php'; |
| 5 | 5 | $url = api_get_path(WEB_PATH).'main/auth/conditional_login/complete_phone_number.php'; |
| 6 | 6 | |
| 7 | -if (! isset($_SESSION['conditional_login']['uid'])) |
|
| 7 | +if (! isset($_SESSION['conditional_login']['uid'])) { |
|
| 8 | 8 | die("Not Authorised"); |
| 9 | +} |
|
| 9 | 10 | ?> |
| 10 | 11 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
| 11 | 12 | <html lang="fr" xml:lang="fr" xmlns="http://www.w3.org/1999/xhtml"> |
@@ -54,16 +54,16 @@ discard block |
||
| 54 | 54 | } |
| 55 | 55 | $course_info = api_get_course_info_by_id($result['c_id']); |
| 56 | 56 | $course_image = '<img src="'.$course_info['course_image_large'].'">'; |
| 57 | - $dates .= '<li><a href="#'.$login.'">' . api_convert_and_format_date($login, DATE_FORMAT_SHORT) . '</a></li>'; |
|
| 57 | + $dates .= '<li><a href="#'.$login.'">'.api_convert_and_format_date($login, DATE_FORMAT_SHORT).'</a></li>'; |
|
| 58 | 58 | $issues .= '<li id ="'.$login.'">'; |
| 59 | 59 | $issues .= '<div class="img-course">'.$course_image.'</div>'; |
| 60 | 60 | |
| 61 | 61 | $issues .= '<div class="text-course">'; |
| 62 | - $issues .= '<p>' . sprintf( |
|
| 62 | + $issues .= '<p>'.sprintf( |
|
| 63 | 63 | get_lang('YouHaveEnteredTheCourseXInY'), |
| 64 | - '" '. $courseInfo['name'] .' "', |
|
| 64 | + '" '.$courseInfo['name'].' "', |
|
| 65 | 65 | api_convert_and_format_date($login, DATE_TIME_FORMAT_LONG) |
| 66 | - ) . '</p>'; |
|
| 66 | + ).'</p>'; |
|
| 67 | 67 | $issues .= '</div>'; |
| 68 | 68 | $issues .= '</li>'; |
| 69 | 69 | $count++; |
@@ -82,8 +82,8 @@ discard block |
||
| 82 | 82 | $content .= '<div class="row">'; |
| 83 | 83 | $content .= '<div class="col-md-12">'; |
| 84 | 84 | $content .= '<div id="my_timeline">'; |
| 85 | - $content .= '<ul id="dates">' . $dates . '</ul>'; |
|
| 86 | - $content .= '<ul id="issues">' . $issues . '</ul>'; |
|
| 85 | + $content .= '<ul id="dates">'.$dates.'</ul>'; |
|
| 86 | + $content .= '<ul id="issues">'.$issues.'</ul>'; |
|
| 87 | 87 | $content .= '<div id="grad_left"></div>'; |
| 88 | 88 | $content .= '<div id="grad_right"></div>'; |
| 89 | 89 | $content .= '<a href="#" id="prev"></a>'; |