@@ -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> |
@@ -48,8 +48,9 @@ |
||
| 48 | 48 | ); |
| 49 | 49 | $lang_match = $chamilo_langs[get_preferred_language($available_langs)]; |
| 50 | 50 | // recover previous value ... |
| 51 | -if (isset($_SESSION['user_language_choice'])) |
|
| 51 | +if (isset($_SESSION['user_language_choice'])) { |
|
| 52 | 52 | $lang_match = $_SESSION['user_language_choice']; |
| 53 | +} |
|
| 53 | 54 | |
| 54 | 55 | // Chamilo parameter, on logout |
| 55 | 56 | if (isset($_REQUEST['language']) && !empty($_REQUEST['language']) && in_array($_REQUEST['language'], $chamilo_langs)) { |
@@ -24,15 +24,15 @@ |
||
| 24 | 24 | $lang_match = $chamilo_langs[get_preferred_language($available_langs)]; |
| 25 | 25 | // recover previous value ... |
| 26 | 26 | if (isset($_SESSION['user_language_choice'])) |
| 27 | - $lang_match = $_SESSION['user_language_choice']; |
|
| 27 | + $lang_match = $_SESSION['user_language_choice']; |
|
| 28 | 28 | |
| 29 | 29 | // Chamilo parameter, on logout |
| 30 | 30 | if (isset($_REQUEST['language']) && !empty($_REQUEST['language']) && in_array($_REQUEST['language'], $chamilo_langs)) { |
| 31 | - $lang_match = $_REQUEST['language']; |
|
| 31 | + $lang_match = $_REQUEST['language']; |
|
| 32 | 32 | } |
| 33 | 33 | // Incoming link parameter |
| 34 | 34 | if (isset($_REQUEST['lang']) && !empty($_REQUEST['lang']) && in_array($_REQUEST['lang'], $available_langs)) { |
| 35 | - $lang_match = $chamilo_langs[$_REQUEST['lang']]; |
|
| 35 | + $lang_match = $chamilo_langs[$_REQUEST['lang']]; |
|
| 36 | 36 | } |
| 37 | 37 | |
| 38 | 38 | $detect = api_get_setting('auto_detect_language_custom_pages'); |
@@ -6,7 +6,7 @@ |
||
| 6 | 6 | * @package chamilo.custompages |
| 7 | 7 | */ |
| 8 | 8 | // Get helper functions |
| 9 | -require_once __DIR__ . '/language.inc.php'; |
|
| 9 | +require_once __DIR__.'/language.inc.php'; |
|
| 10 | 10 | |
| 11 | 11 | // Define the languages you want to make available for auto-detection here |
| 12 | 12 | $available_langs = array('en', 'fr', 'es', 'gl', 'eu'); |
@@ -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', |
@@ -19,11 +19,11 @@ |
||
| 19 | 19 | |
| 20 | 20 | // Replacing user photos |
| 21 | 21 | define('KEEP_THE_NAME_WHEN_CHANGE_IMAGE', true); |
| 22 | - // true -> the new image have the name of previous. |
|
| 23 | - // false -> a new name is build for each upladed image. |
|
| 22 | + // true -> the new image have the name of previous. |
|
| 23 | + // false -> a new name is build for each upladed image. |
|
| 24 | 24 | define('KEEP_THE_OLD_IMAGE_AFTER_CHANGE', true); |
| 25 | - // true -> if KEEP_THE_NAME_WHEN_CHANGE_IMAGE is true, the previous image is rename before. |
|
| 26 | - // false -> only the last image still on server. |
|
| 25 | + // true -> if KEEP_THE_NAME_WHEN_CHANGE_IMAGE is true, the previous image is rename before. |
|
| 26 | + // false -> only the last image still on server. |
|
| 27 | 27 | |
| 28 | 28 | // Official code |
| 29 | 29 | // Don't forget to change name of offical code in your organization |
@@ -39,29 +39,29 @@ |
||
| 39 | 39 | * Array of connection parameters |
| 40 | 40 | **/ |
| 41 | 41 | $extldap_config = array( |
| 42 | - //base dommain string |
|
| 43 | - 'base_dn' => 'DC=cblue,DC=be', |
|
| 44 | - //admin distinguished name |
|
| 45 | - 'admin_dn' => 'CN=admin,dc=cblue,dc=be', |
|
| 46 | - //admin password |
|
| 47 | - 'admin_password' => 'pass', |
|
| 48 | - //ldap host |
|
| 49 | - 'host' => array('1.2.3.4', '2.3.4.5', '3.4.5.6'), |
|
| 50 | - // filter |
|
| 42 | + //base dommain string |
|
| 43 | + 'base_dn' => 'DC=cblue,DC=be', |
|
| 44 | + //admin distinguished name |
|
| 45 | + 'admin_dn' => 'CN=admin,dc=cblue,dc=be', |
|
| 46 | + //admin password |
|
| 47 | + 'admin_password' => 'pass', |
|
| 48 | + //ldap host |
|
| 49 | + 'host' => array('1.2.3.4', '2.3.4.5', '3.4.5.6'), |
|
| 50 | + // filter |
|
| 51 | 51 | // 'filter' => '', // no () arround the string |
| 52 | - //'port' => , default on 389 |
|
| 53 | - //protocl version (2 or 3) |
|
| 54 | - 'protocol_version' => 3, |
|
| 55 | - // set this to 0 to connect to AD server |
|
| 56 | - 'referrals' => 0, |
|
| 57 | - //String used to search the user in ldap. %username will ber replaced by the username. |
|
| 58 | - //See extldap_get_user_search_string() function below |
|
| 52 | + //'port' => , default on 389 |
|
| 53 | + //protocl version (2 or 3) |
|
| 54 | + 'protocol_version' => 3, |
|
| 55 | + // set this to 0 to connect to AD server |
|
| 56 | + 'referrals' => 0, |
|
| 57 | + //String used to search the user in ldap. %username will ber replaced by the username. |
|
| 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 |
|
| 61 | - //encoding used in ldap (most common are UTF-8 and ISO-8859-1 |
|
| 62 | - 'encoding' => 'UTF-8', |
|
| 63 | - //Set to true if user info have to be update at each login |
|
| 64 | - 'update_userinfo' => true |
|
| 60 | + 'user_search' => 'uid=%username%', // no () arround the string |
|
| 61 | + //encoding used in ldap (most common are UTF-8 and ISO-8859-1 |
|
| 62 | + 'encoding' => 'UTF-8', |
|
| 63 | + //Set to true if user info have to be update at each login |
|
| 64 | + 'update_userinfo' => true |
|
| 65 | 65 | ); |
| 66 | 66 | |
| 67 | 67 | |
@@ -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 |
@@ -188,7 +188,7 @@ |
||
| 188 | 188 | |
| 189 | 189 | //Show the chamilo mascot |
| 190 | 190 | if (empty($courseAndSessions['html']) && !isset($_GET['history'])) { |
| 191 | - $controller->tpl->assign('welcome_to_course_block', $controller->return_welcome_to_course_block()); |
|
| 191 | + $controller->tpl->assign('welcome_to_course_block', $controller->return_welcome_to_course_block()); |
|
| 192 | 192 | } |
| 193 | 193 | |
| 194 | 194 | $controller->tpl->assign('content', $courseAndSessions['html']); |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | $url = api_get_path(WEB_AJAX_PATH).'document.ajax.php?a=document_preview'; |
| 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 | - $htmlHeadXtra[] = '<script> |
|
| 50 | + $htmlHeadXtra[] = '<script> |
|
| 51 | 51 | $(document).ready(function() { |
| 52 | 52 | $(".document_preview_container").hide(); |
| 53 | 53 | $(".document_preview").click(function() { |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | if ($displayMyCourseViewBySessionLink) { |
| 80 | 80 | $htmlHeadXtra[] = ' |
| 81 | 81 | <script> |
| 82 | - userId = ' . $userId . ' |
|
| 82 | + userId = ' . $userId.' |
|
| 83 | 83 | $(document).ready(function() { |
| 84 | 84 | changeMyCoursesView($.cookie("defaultMyCourseView"+userId)); |
| 85 | 85 | }); |
@@ -91,7 +91,7 @@ discard block |
||
| 91 | 91 | function changeMyCoursesView(inView) |
| 92 | 92 | { |
| 93 | 93 | $.cookie("defaultMyCourseView"+userId, inView, { expires: 365 }); |
| 94 | - if (inView == ' . IndexManager::VIEW_BY_SESSION . ') { |
|
| 94 | + if (inView == ' . IndexManager::VIEW_BY_SESSION.') { |
|
| 95 | 95 | $("#viewBySession").addClass("btn-primary"); |
| 96 | 96 | $("#viewByDefault").removeClass("btn-primary"); |
| 97 | 97 | } else { |
@@ -150,16 +150,16 @@ discard block |
||
| 150 | 150 | if (isset($sessionInfo['courses']) && count($sessionInfo['courses']) == 1) { |
| 151 | 151 | $courseCode = $sessionInfo['courses'][0]['code']; |
| 152 | 152 | $courseInfo = api_get_course_info_by_id($sessionInfo['courses'][0]['real_id']); |
| 153 | - $courseUrl = $courseInfo['course_public_url'] . '?id_session=' . $sessionInfo['session_id']; |
|
| 154 | - header('Location:' . $courseUrl); |
|
| 153 | + $courseUrl = $courseInfo['course_public_url'].'?id_session='.$sessionInfo['session_id']; |
|
| 154 | + header('Location:'.$courseUrl); |
|
| 155 | 155 | exit; |
| 156 | 156 | } |
| 157 | 157 | |
| 158 | 158 | // Session has many courses. |
| 159 | 159 | if (isset($sessionInfo['session_id'])) { |
| 160 | - $url = api_get_path(WEB_CODE_PATH) . 'session/?session_id=' . $sessionInfo['session_id']; |
|
| 160 | + $url = api_get_path(WEB_CODE_PATH).'session/?session_id='.$sessionInfo['session_id']; |
|
| 161 | 161 | |
| 162 | - header('Location:' . $url); |
|
| 162 | + header('Location:'.$url); |
|
| 163 | 163 | exit; |
| 164 | 164 | } |
| 165 | 165 | } |
@@ -175,7 +175,7 @@ discard block |
||
| 175 | 175 | $courseInfo = api_get_course_info_by_id($courses[0]['real_id']); |
| 176 | 176 | if (!empty($courseInfo)) { |
| 177 | 177 | $courseUrl = $courseInfo['course_public_url']; |
| 178 | - header('Location:' . $courseUrl); |
|
| 178 | + header('Location:'.$courseUrl); |
|
| 179 | 179 | exit; |
| 180 | 180 | } |
| 181 | 181 | } |
@@ -7,7 +7,7 @@ |
||
| 7 | 7 | |
| 8 | 8 | $actions = ''; |
| 9 | 9 | if (api_is_platform_admin()) { |
| 10 | - $actions = '<a href="'.api_get_path(WEB_PATH).'main/admin/system_announcements.php">'. |
|
| 10 | + $actions = '<a href="'.api_get_path(WEB_PATH).'main/admin/system_announcements.php">'. |
|
| 11 | 11 | Display::return_icon('edit.png', get_lang('EditSystemAnnouncement'), array(), 32).'</a>'; |
| 12 | 12 | } |
| 13 | 13 | |
@@ -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 | } |