@@ -1,13 +1,13 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * This script is a configuration file for the date plugin. You can use it as a master for other platform plugins (course plugins are slightly different). |
|
4 | - * These settings will be used in the administration interface for plugins (Chamilo configuration settings->Plugins) |
|
5 | - * @package chamilo.plugin |
|
6 | - * @author Julio Montoya <[email protected]> |
|
7 | - */ |
|
3 | + * This script is a configuration file for the date plugin. You can use it as a master for other platform plugins (course plugins are slightly different). |
|
4 | + * These settings will be used in the administration interface for plugins (Chamilo configuration settings->Plugins) |
|
5 | + * @package chamilo.plugin |
|
6 | + * @author Julio Montoya <[email protected]> |
|
7 | + */ |
|
8 | 8 | /** |
9 | - * Plugin details (must be present) |
|
10 | - */ |
|
9 | + * Plugin details (must be present) |
|
10 | + */ |
|
11 | 11 | |
12 | 12 | //the plugin title |
13 | 13 | $plugin_info['title'] = 'Add a button to logout from CAS'; |
@@ -27,18 +27,18 @@ |
||
27 | 27 | $array_keys = array_keys($_GET); |
28 | 28 | |
29 | 29 | if (!empty($array_keys)) { |
30 | - $username = substr($array_keys[0],0,20); // max len of an username |
|
31 | - $friend_id = UserManager::get_user_id_from_username($username); |
|
30 | + $username = substr($array_keys[0],0,20); // max len of an username |
|
31 | + $friend_id = UserManager::get_user_id_from_username($username); |
|
32 | 32 | |
33 | - if ($friend_id) { |
|
34 | - SocialManager::display_individual_user($friend_id); |
|
35 | - } else { |
|
36 | - // we cant find your friend |
|
37 | - header('Location: whoisonline.php'); |
|
38 | - exit; |
|
39 | - } |
|
33 | + if ($friend_id) { |
|
34 | + SocialManager::display_individual_user($friend_id); |
|
35 | + } else { |
|
36 | + // we cant find your friend |
|
37 | + header('Location: whoisonline.php'); |
|
38 | + exit; |
|
39 | + } |
|
40 | 40 | } else { |
41 | - // we cant find your friend |
|
42 | - header('Location: whoisonline.php'); |
|
43 | - exit; |
|
41 | + // we cant find your friend |
|
42 | + header('Location: whoisonline.php'); |
|
43 | + exit; |
|
44 | 44 | } |
@@ -1,12 +1,12 @@ |
||
1 | 1 | <?php |
2 | 2 | /* For licensing terms, see /license.txt */ |
3 | 3 | /** |
4 | - * This script allows for specific registration rules (see CustomPages feature of Chamilo) |
|
5 | - * Please contact CBlue regarding any licences issues. |
|
6 | - * Author: [email protected] |
|
7 | - * Copyright: CBlue SPRL, 20XX (GNU/GPLv3) |
|
8 | - * @package chamilo.custompages |
|
9 | - **/ |
|
4 | + * This script allows for specific registration rules (see CustomPages feature of Chamilo) |
|
5 | + * Please contact CBlue regarding any licences issues. |
|
6 | + * Author: [email protected] |
|
7 | + * Copyright: CBlue SPRL, 20XX (GNU/GPLv3) |
|
8 | + * @package chamilo.custompages |
|
9 | + **/ |
|
10 | 10 | |
11 | 11 | require_once('language.php'); |
12 | 12 | require_once('../inc/global.inc.php'); |
@@ -1,16 +1,16 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | /* For licensing terms, see /license.txt */ |
3 | 3 | /** |
4 | - * CustomPages : Browser language detection |
|
5 | - * Include this file in your custom page if you want to set the language variable of the Chamilo session to the best pick according to the visitor's browser's options. |
|
6 | - * 2011, Jean-Karim Bockstael, CBlue <[email protected]> |
|
7 | - * This requires the Chamilo system to be initialized |
|
8 | - * (note that it's easier to do the following include in the parent page) |
|
9 | - * @package chamilo.custompages |
|
10 | - */ |
|
4 | + * CustomPages : Browser language detection |
|
5 | + * Include this file in your custom page if you want to set the language variable of the Chamilo session to the best pick according to the visitor's browser's options. |
|
6 | + * 2011, Jean-Karim Bockstael, CBlue <[email protected]> |
|
7 | + * This requires the Chamilo system to be initialized |
|
8 | + * (note that it's easier to do the following include in the parent page) |
|
9 | + * @package chamilo.custompages |
|
10 | + */ |
|
11 | 11 | /** |
12 | - * Returns the best match between available languages and visitor preferences |
|
13 | - * @return string the best match as 2-chars code, null when none match |
|
12 | + * Returns the best match between available languages and visitor preferences |
|
13 | + * @return string the best match as 2-chars code, null when none match |
|
14 | 14 | */ |
15 | 15 | function get_preferred_language($available_langs) { |
16 | 16 | // Parsing the Accept-languages HTTP header |
@@ -29,11 +29,11 @@ discard block |
||
29 | 29 | krsort($langs, SORT_NUMERIC); |
30 | 30 | // Choosing the best match |
31 | 31 | foreach($langs as $weight => $codes) { |
32 | - foreach ($codes as $code) { |
|
33 | - if (in_array($code, $available_langs)) { |
|
34 | - return $code; |
|
35 | - } |
|
36 | - } |
|
32 | + foreach ($codes as $code) { |
|
33 | + if (in_array($code, $available_langs)) { |
|
34 | + return $code; |
|
35 | + } |
|
36 | + } |
|
37 | 37 | } |
38 | 38 | // No match |
39 | 39 | return null; |
@@ -44,11 +44,11 @@ discard block |
||
44 | 44 | * use this if you want to avoid translation caching issues |
45 | 45 | */ |
46 | 46 | function cp_get_lang($variable) { |
47 | - return get_lang($variable, null, $_SESSION['user_language_choice']); |
|
47 | + return get_lang($variable, null, $_SESSION['user_language_choice']); |
|
48 | 48 | } |
49 | 49 | /** |
50 | - * Code |
|
51 | - */ |
|
50 | + * Code |
|
51 | + */ |
|
52 | 52 | // Note that Chamilo languages are expressed as full english names, not 2-characters codes |
53 | 53 | // e.g. 'english' instead of 'en', 'french' instead of 'fr', ... |
54 | 54 | // We need a matching array. Note the value for the null key, which is the default language. |
@@ -63,12 +63,12 @@ discard block |
||
63 | 63 | |
64 | 64 | // Chamilo overrides this parameters at some places, e.g. in the logout link |
65 | 65 | if (isset($_REQUEST['language']) && !empty($_REQUEST['language']) && in_array($_REQUEST['language'], $chamilo_langs)) { |
66 | - $lang_match = $_REQUEST['language']; |
|
66 | + $lang_match = $_REQUEST['language']; |
|
67 | 67 | } |
68 | 68 | |
69 | 69 | // Maybe a language had already been selected, we should honor this |
70 | 70 | if (isset($_SESSION['user_language_choice']) && in_array($_SESSION['user_language_choice'], $chamilo_langs)) { |
71 | - $lang_match = $_SESSION['user_language_choice']; |
|
71 | + $lang_match = $_SESSION['user_language_choice']; |
|
72 | 72 | } |
73 | 73 | |
74 | 74 | // We need to set the relevant session variables to the best match, to use Chamilo's i18n lib. |
@@ -79,7 +79,7 @@ |
||
79 | 79 | <div id="login-form-box" class="form-box"> |
80 | 80 | <div id="login-form-info" class="form-info"> |
81 | 81 | <?php if (isset($content['info']) && !empty($content['info'])) { |
82 | - echo $content['info']; |
|
82 | + echo $content['info']; |
|
83 | 83 | } |
84 | 84 | ?> |
85 | 85 | </div> |
@@ -1,12 +1,12 @@ |
||
1 | 1 | <?php |
2 | 2 | /* For licensing terms, see /license.txt */ |
3 | 3 | /** |
4 | - * Displayed after the user has been logged out. |
|
5 | - * @package chamilo.custompages |
|
6 | - */ |
|
4 | + * Displayed after the user has been logged out. |
|
5 | + * @package chamilo.custompages |
|
6 | + */ |
|
7 | 7 | /** |
8 | - * Init |
|
9 | - */ |
|
8 | + * Init |
|
9 | + */ |
|
10 | 10 | $called_direcly = !function_exists('api_get_path'); |
11 | 11 | if ($called_direcly) { |
12 | 12 | return ''; |
@@ -9,30 +9,30 @@ discard block |
||
9 | 9 | * Get the preferred language base on the browser headers |
10 | 10 | */ |
11 | 11 | function get_preferred_language($available_langs) { |
12 | - $langs = array(); |
|
13 | - foreach (explode(',', $_SERVER['HTTP_ACCEPT_LANGUAGE']) as $httplang) { |
|
14 | - $rawlang = explode(';q=', $httplang); |
|
15 | - if (strpos($rawlang[0], '-') !== FALSE) { |
|
16 | - $rawlang[0] = substr($rawlang[0], 0, strpos($rawlang[0], '-')); |
|
17 | - } |
|
18 | - if (count($rawlang) == 1) { |
|
19 | - $rawlang[1] = 1.0; |
|
20 | - } |
|
21 | - $langs[$rawlang[1]] = $rawlang[0]; |
|
22 | - } |
|
23 | - krsort($langs, SORT_NUMERIC); |
|
24 | - foreach($langs as $weight => $code) { |
|
25 | - if (in_array($code, $available_langs)) { |
|
26 | - return $code; |
|
27 | - } |
|
28 | - } |
|
29 | - return null; |
|
12 | + $langs = array(); |
|
13 | + foreach (explode(',', $_SERVER['HTTP_ACCEPT_LANGUAGE']) as $httplang) { |
|
14 | + $rawlang = explode(';q=', $httplang); |
|
15 | + if (strpos($rawlang[0], '-') !== FALSE) { |
|
16 | + $rawlang[0] = substr($rawlang[0], 0, strpos($rawlang[0], '-')); |
|
17 | + } |
|
18 | + if (count($rawlang) == 1) { |
|
19 | + $rawlang[1] = 1.0; |
|
20 | + } |
|
21 | + $langs[$rawlang[1]] = $rawlang[0]; |
|
22 | + } |
|
23 | + krsort($langs, SORT_NUMERIC); |
|
24 | + foreach($langs as $weight => $code) { |
|
25 | + if (in_array($code, $available_langs)) { |
|
26 | + return $code; |
|
27 | + } |
|
28 | + } |
|
29 | + return null; |
|
30 | 30 | } |
31 | 31 | /** |
32 | - * Get a language variable in a specific language |
|
33 | - */ |
|
32 | + * Get a language variable in a specific language |
|
33 | + */ |
|
34 | 34 | function custompages_get_lang($variable) { |
35 | - return get_lang($variable, null, $_SESSION['user_language_choice']); |
|
35 | + return get_lang($variable, null, $_SESSION['user_language_choice']); |
|
36 | 36 | } |
37 | 37 | |
38 | 38 | $available_langs = array('en', 'fr', 'es', 'gl', 'eu'); |
@@ -49,15 +49,15 @@ discard block |
||
49 | 49 | $lang_match = $chamilo_langs[get_preferred_language($available_langs)]; |
50 | 50 | // recover previous value ... |
51 | 51 | if (isset($_SESSION['user_language_choice'])) |
52 | - $lang_match = $_SESSION['user_language_choice']; |
|
52 | + $lang_match = $_SESSION['user_language_choice']; |
|
53 | 53 | |
54 | 54 | // Chamilo parameter, on logout |
55 | 55 | if (isset($_REQUEST['language']) && !empty($_REQUEST['language']) && in_array($_REQUEST['language'], $chamilo_langs)) { |
56 | - $lang_match = $_REQUEST['language']; |
|
56 | + $lang_match = $_REQUEST['language']; |
|
57 | 57 | } |
58 | 58 | // Incoming link parameter |
59 | 59 | if (isset($_REQUEST['lang']) && !empty($_REQUEST['lang']) && in_array($_REQUEST['lang'], $available_langs)) { |
60 | - $lang_match = $chamilo_langs[$_REQUEST['lang']]; |
|
60 | + $lang_match = $chamilo_langs[$_REQUEST['lang']]; |
|
61 | 61 | } |
62 | 62 | |
63 | 63 | $detect = api_get_setting('auto_detect_language_custom_pages'); |
@@ -27,22 +27,22 @@ |
||
27 | 27 | |
28 | 28 | if (!empty($_POST)) |
29 | 29 | { |
30 | - foreach ( $_POST as $key => $value ) |
|
31 | - { |
|
32 | - if ( ( !is_string($value) && !is_numeric($value) ) || !is_string($key) ) |
|
33 | - continue; |
|
30 | + foreach ( $_POST as $key => $value ) |
|
31 | + { |
|
32 | + if ( ( !is_string($value) && !is_numeric($value) ) || !is_string($key) ) |
|
33 | + continue; |
|
34 | 34 | |
35 | - if ( get_magic_quotes_gpc() ) |
|
36 | - $value = htmlspecialchars( stripslashes((string)$value) ); |
|
37 | - else |
|
38 | - $value = htmlspecialchars( (string)$value ); |
|
35 | + if ( get_magic_quotes_gpc() ) |
|
36 | + $value = htmlspecialchars( stripslashes((string)$value) ); |
|
37 | + else |
|
38 | + $value = htmlspecialchars( (string)$value ); |
|
39 | 39 | ?> |
40 | 40 | <tr> |
41 | 41 | <th style="vertical-align: top"><?php echo htmlspecialchars( (string)$key ); ?></th> |
42 | 42 | <td><pre class="samples"><?php echo $value; ?></pre></td> |
43 | 43 | </tr> |
44 | 44 | <?php |
45 | - } |
|
45 | + } |
|
46 | 46 | } |
47 | 47 | ?> |
48 | 48 | </table> |
@@ -16,7 +16,7 @@ |
||
16 | 16 | */ |
17 | 17 | public function up(Schema $schema) |
18 | 18 | { |
19 | - $this->addSql('ALTER TABLE session ADD COLUMN access_start_date datetime'); |
|
19 | + $this->addSql('ALTER TABLE session ADD COLUMN access_start_date datetime'); |
|
20 | 20 | $this->addSql('ALTER TABLE session ADD COLUMN access_end_date datetime'); |
21 | 21 | $this->addSql('ALTER TABLE session ADD COLUMN coach_access_start_date datetime'); |
22 | 22 | $this->addSql('ALTER TABLE session ADD COLUMN coach_access_end_date datetime'); |