@@ -1,20 +1,20 @@ |
||
1 | 1 | <?php |
2 | 2 | // Show the CAS button to logout to your CAS session |
3 | 3 | global $_user; |
4 | -$_template['show_message'] = false; |
|
4 | +$_template['show_message'] = false; |
|
5 | 5 | |
6 | 6 | if (!api_is_anonymous() && |
7 | 7 | api_get_setting('cas_activate') == 'true' && |
8 | 8 | $_user['auth_source'] == CAS_AUTH_SOURCE |
9 | 9 | ) { |
10 | - $_template['show_message'] = true; |
|
10 | + $_template['show_message'] = true; |
|
11 | 11 | // the default title |
12 | 12 | $logout_label = "Deconnexion de CAS"; |
13 | 13 | if (!empty($plugin_info['settings']['add_cas_logout_button_cas_logout_label'])) { |
14 | 14 | $logout_label = api_htmlentities($plugin_info['settings']['add_cas_logout_button_cas_logout_label']); |
15 | 15 | } |
16 | 16 | // the comm |
17 | - $logout_comment = api_htmlentities($plugin_info['settings']['add_cas_logout_button_cas_logout_comment']);; |
|
17 | + $logout_comment = api_htmlentities($plugin_info['settings']['add_cas_logout_button_cas_logout_comment']); ; |
|
18 | 18 | // URL of the image |
19 | 19 | $logout_image_url = $plugin_info['settings']['add_cas_logout_button_cas_logout_image_url']; |
20 | 20 |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | */ |
11 | 11 | |
12 | 12 | //the plugin title |
13 | -$plugin_info['title'] = 'Add a button to logout from CAS'; |
|
13 | +$plugin_info['title'] = 'Add a button to logout from CAS'; |
|
14 | 14 | |
15 | 15 | //the comments that go with the plugin |
16 | 16 | $plugin_info['comment'] = "If CAS is activated, this plugin add a text and a button on the user page to logout from a CAS session. Configure plugin to add title, comment and logo."; |
@@ -36,4 +36,4 @@ discard block |
||
36 | 36 | $plugin_info['settings_form'] = $form; |
37 | 37 | |
38 | 38 | // Set the templates that are going to be used |
39 | -$plugin_info['templates'] = array('template.tpl'); |
|
39 | +$plugin_info['templates'] = array('template.tpl'); |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | Event::addEvent( |
61 | 61 | LOG_ATTEMPTED_FORCED_LOGIN, |
62 | 62 | 'tried_hacking_get', |
63 | - $_SERVER['REMOTE_ADDR'].(empty($_POST['login'])?'':'/'.$_POST['login']), |
|
63 | + $_SERVER['REMOTE_ADDR'].(empty($_POST['login']) ? '' : '/'.$_POST['login']), |
|
64 | 64 | null, |
65 | 65 | $i |
66 | 66 | ); |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | if (!empty($_POST['submitAuth'])) { |
93 | 93 | // The user has been already authenticated, we are now to find the last login of the user. |
94 | 94 | if (isset ($_user['user_id'])) { |
95 | - $track_login_table = Database :: get_main_table(TABLE_STATISTIC_TRACK_E_LOGIN); |
|
95 | + $track_login_table = Database :: get_main_table(TABLE_STATISTIC_TRACK_E_LOGIN); |
|
96 | 96 | $sql_last_login = "SELECT UNIX_TIMESTAMP(login_date) |
97 | 97 | FROM $track_login_table |
98 | 98 | WHERE login_user_id = '".$_user['user_id']."' |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | if (Database::num_rows($result_last_login) > 0) { |
103 | 103 | $user_last_login_datetime = Database::fetch_array($result_last_login); |
104 | 104 | $user_last_login_datetime = $user_last_login_datetime[0]; |
105 | - Session::write('user_last_login_datetime',$user_last_login_datetime); |
|
105 | + Session::write('user_last_login_datetime', $user_last_login_datetime); |
|
106 | 106 | } |
107 | 107 | } |
108 | 108 | //Event::event_login(); |
@@ -61,7 +61,7 @@ |
||
61 | 61 | if (!isset($_GET['id'])) { |
62 | 62 | if (api_get_setting('allow_social_tool') == 'true') { |
63 | 63 | if (!api_is_anonymous()) { |
64 | - $query = isset($_GET['q']) ? $_GET['q']: null; |
|
64 | + $query = isset($_GET['q']) ? $_GET['q'] : null; |
|
65 | 65 | $social_search = UserManager::get_search_form($query); |
66 | 66 | } |
67 | 67 | } |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | $time_limit = 60; |
78 | 78 | } |
79 | 79 | |
80 | - $online_time = time() - $time_limit*60; |
|
80 | + $online_time = time() - $time_limit * 60; |
|
81 | 81 | $current_date = api_get_utc_datetime($online_time); |
82 | 82 | |
83 | 83 | $students_online = array(); |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | |
98 | 98 | $result = Database::query($sql); |
99 | 99 | |
100 | - while($user_list = Database::fetch_array($result)) { |
|
100 | + while ($user_list = Database::fetch_array($result)) { |
|
101 | 101 | $students_online[$user_list['access_user_id']] = $user_list; |
102 | 102 | } |
103 | 103 | } |
@@ -27,8 +27,8 @@ |
||
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 | 33 | if ($friend_id) { |
34 | 34 | SocialManager::display_individual_user($friend_id); |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | ?> |
12 | 12 | <html> |
13 | 13 | <head> |
14 | - <title><?php echo custompages_get_lang('LostPassword');?></title> |
|
14 | + <title><?php echo custompages_get_lang('LostPassword'); ?></title> |
|
15 | 15 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
16 | 16 | <!--[if !IE 6]><!--> |
17 | 17 | <link rel="stylesheet" type="text/css" href="../../custompages/style.css" /> |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | <div id="lostpassword-form-box" class="form-box"> |
44 | 44 | <?php |
45 | 45 | if (isset($content['info']) && !empty($content['info'])) { |
46 | - echo '<div id="registration-form-error" class="form-error"><ul>' . $content['info'] . '</ul></div>'; |
|
46 | + echo '<div id="registration-form-error" class="form-error"><ul>'.$content['info'].'</ul></div>'; |
|
47 | 47 | } |
48 | 48 | |
49 | 49 | echo isset($content['form']) ? $content['form'] : '' |
@@ -81,7 +81,7 @@ |
||
81 | 81 | ?> |
82 | 82 | <html> |
83 | 83 | <head> |
84 | - <title><?php echo custompages_get_lang('Registration');?></title> |
|
84 | + <title><?php echo custompages_get_lang('Registration'); ?></title> |
|
85 | 85 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
86 | 86 | <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
87 | 87 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | } |
29 | 29 | krsort($langs, SORT_NUMERIC); |
30 | 30 | // Choosing the best match |
31 | - foreach($langs as $weight => $codes) { |
|
31 | + foreach ($langs as $weight => $codes) { |
|
32 | 32 | foreach ($codes as $code) { |
33 | 33 | if (in_array($code, $available_langs)) { |
34 | 34 | return $code; |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | $chamilo_langs = array(null => 'english', 'en' => 'english', 'fr' => 'french', 'es' => 'spanish'); |
57 | 57 | |
58 | 58 | // Which of these can we actually pick from ? |
59 | -$available_langs = array('en','fr'); |
|
59 | +$available_langs = array('en', 'fr'); |
|
60 | 60 | |
61 | 61 | // Let's find out which language to serve to this particular browser |
62 | 62 | $lang_match = $chamilo_langs[get_preferred_language($available_langs)]; |