@@ -20,8 +20,8 @@ |
||
| 20 | 20 | */ |
| 21 | 21 | class ClockworkException extends Exception { |
| 22 | 22 | |
| 23 | - public function __construct( $message, $code = 0 ) { |
|
| 23 | + public function __construct($message, $code = 0) { |
|
| 24 | 24 | // make sure everything is assigned properly |
| 25 | - parent::__construct( $message, $code ); |
|
| 25 | + parent::__construct($message, $code); |
|
| 26 | 26 | } |
| 27 | 27 | } |
@@ -6,7 +6,7 @@ |
||
| 6 | 6 | * @author Laurent Opprecht |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -require_once api_get_path(LIBRARY_PATH) . 'plugin.class.php'; |
|
| 10 | -require_once dirname(__FILE__) . '/lib/static_plugin.class.php'; |
|
| 9 | +require_once api_get_path(LIBRARY_PATH).'plugin.class.php'; |
|
| 10 | +require_once dirname(__FILE__).'/lib/static_plugin.class.php'; |
|
| 11 | 11 | |
| 12 | 12 | $plugin_info = StaticPlugin::create()->get_info(); |
| 13 | 13 | \ No newline at end of file |
@@ -1,5 +1,5 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -require_once dirname(__FILE__) . '/lib/search_course_widget.class.php'; |
|
| 3 | +require_once dirname(__FILE__).'/lib/search_course_widget.class.php'; |
|
| 4 | 4 | $widget = new SearchCourseWidget(); |
| 5 | 5 | $widget->run(); |
@@ -5,7 +5,7 @@ |
||
| 5 | 5 | * @author Laurent Opprecht |
| 6 | 6 | */ |
| 7 | 7 | |
| 8 | -require_once api_get_path(LIBRARY_PATH) . 'plugin.class.php'; |
|
| 9 | -require_once dirname(__FILE__) . '/lib/search_course_plugin.class.php'; |
|
| 8 | +require_once api_get_path(LIBRARY_PATH).'plugin.class.php'; |
|
| 9 | +require_once dirname(__FILE__).'/lib/search_course_plugin.class.php'; |
|
| 10 | 10 | |
| 11 | 11 | $plugin_info = SearchCoursePlugin::create()->get_info(); |
| 12 | 12 | \ No newline at end of file |
@@ -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 | } |
@@ -41,10 +41,10 @@ discard block |
||
| 41 | 41 | </th> |
| 42 | 42 | </tr> |
| 43 | 43 | <?php |
| 44 | - $session_is_coach = array(); |
|
| 45 | - if (isset($_user['user_id']) && $_user['user_id'] != '') { |
|
| 46 | - $_user['user_id'] = intval($_user['user_id']); |
|
| 47 | - $sql = "SELECT DISTINCT session.id, |
|
| 44 | + $session_is_coach = array(); |
|
| 45 | + if (isset($_user['user_id']) && $_user['user_id'] != '') { |
|
| 46 | + $_user['user_id'] = intval($_user['user_id']); |
|
| 47 | + $sql = "SELECT DISTINCT session.id, |
|
| 48 | 48 | name, |
| 49 | 49 | access_start_date, |
| 50 | 50 | access_end_date |
@@ -53,13 +53,13 @@ discard block |
||
| 53 | 53 | ON srcru.user_id = ".$_user['user_id']." AND srcru.status=2 |
| 54 | 54 | AND session.id = srcru.session_id |
| 55 | 55 | ORDER BY access_start_date, access_end_date, name"; |
| 56 | - $result = Database::query($sql); |
|
| 56 | + $result = Database::query($sql); |
|
| 57 | 57 | |
| 58 | - while ($session = Database:: fetch_array($result)) { |
|
| 59 | - $session_is_coach[$session['id']] = $session; |
|
| 60 | - } |
|
| 58 | + while ($session = Database:: fetch_array($result)) { |
|
| 59 | + $session_is_coach[$session['id']] = $session; |
|
| 60 | + } |
|
| 61 | 61 | |
| 62 | - $sql = "SELECT DISTINCT session.id, |
|
| 62 | + $sql = "SELECT DISTINCT session.id, |
|
| 63 | 63 | name, |
| 64 | 64 | access_start_date, |
| 65 | 65 | access_end_date |
@@ -67,9 +67,9 @@ discard block |
||
| 67 | 67 | WHERE session.id_coach = ".$_user['user_id']." |
| 68 | 68 | ORDER BY access_start_date, access_end_date, name"; |
| 69 | 69 | $result = Database::query($sql); |
| 70 | - while ($session = Database:: fetch_array($result)) { |
|
| 71 | - $session_is_coach[$session['id']] = $session; |
|
| 72 | - } |
|
| 70 | + while ($session = Database:: fetch_array($result)) { |
|
| 71 | + $session_is_coach[$session['id']] = $session; |
|
| 72 | + } |
|
| 73 | 73 | |
| 74 | 74 | if (empty($time_limit)) { |
| 75 | 75 | $time_limit = api_get_setting('time_limit_whosonline'); |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | |
| 83 | 83 | $students_online = array(); |
| 84 | 84 | foreach ($session_is_coach as $session) { |
| 85 | - $sql = "SELECT DISTINCT last_access.access_user_id, |
|
| 85 | + $sql = "SELECT DISTINCT last_access.access_user_id, |
|
| 86 | 86 | last_access.access_date, |
| 87 | 87 | last_access.c_id, |
| 88 | 88 | last_access.access_session_id, |
@@ -95,49 +95,49 @@ discard block |
||
| 95 | 95 | AND access_date >= '$current_date' |
| 96 | 96 | GROUP BY access_user_id"; |
| 97 | 97 | |
| 98 | - $result = Database::query($sql); |
|
| 98 | + $result = Database::query($sql); |
|
| 99 | 99 | |
| 100 | - while($user_list = Database::fetch_array($result)) { |
|
| 101 | - $students_online[$user_list['access_user_id']] = $user_list; |
|
| 102 | - } |
|
| 103 | - } |
|
| 100 | + while($user_list = Database::fetch_array($result)) { |
|
| 101 | + $students_online[$user_list['access_user_id']] = $user_list; |
|
| 102 | + } |
|
| 103 | + } |
|
| 104 | 104 | |
| 105 | - if (count($students_online) > 0) { |
|
| 106 | - foreach ($students_online as $student_online) { |
|
| 107 | - echo "<tr> |
|
| 105 | + if (count($students_online) > 0) { |
|
| 106 | + foreach ($students_online as $student_online) { |
|
| 107 | + echo "<tr> |
|
| 108 | 108 | <td> |
| 109 | 109 | "; |
| 110 | - echo $student_online['name']; |
|
| 111 | - echo " </td> |
|
| 110 | + echo $student_online['name']; |
|
| 111 | + echo " </td> |
|
| 112 | 112 | <td align='center'> |
| 113 | 113 | "; |
| 114 | - $courseInfo = api_get_course_info_by_id($student_online['c_id']); |
|
| 115 | - echo $courseInfo['title']; |
|
| 116 | - echo " </td> |
|
| 114 | + $courseInfo = api_get_course_info_by_id($student_online['c_id']); |
|
| 115 | + echo $courseInfo['title']; |
|
| 116 | + echo " </td> |
|
| 117 | 117 | <td align='center'> |
| 118 | 118 | "; |
| 119 | - if (!empty($student_online['email'])) { |
|
| 120 | - echo $student_online['email']; |
|
| 121 | - } else { |
|
| 122 | - echo get_lang('NoEmail'); |
|
| 123 | - } |
|
| 124 | - echo " </td> |
|
| 119 | + if (!empty($student_online['email'])) { |
|
| 120 | + echo $student_online['email']; |
|
| 121 | + } else { |
|
| 122 | + echo get_lang('NoEmail'); |
|
| 123 | + } |
|
| 124 | + echo " </td> |
|
| 125 | 125 | <td align='center'> |
| 126 | 126 | "; |
| 127 | - echo '<a href="main/chat/chat.php?cidReq='.$courseInfo['code'].'&id_session='.$student_online['access_session_id'].'"> -> </a>'; |
|
| 128 | - echo " </td> |
|
| 127 | + echo '<a href="main/chat/chat.php?cidReq='.$courseInfo['code'].'&id_session='.$student_online['access_session_id'].'"> -> </a>'; |
|
| 128 | + echo " </td> |
|
| 129 | 129 | </tr> |
| 130 | 130 | "; |
| 131 | - } |
|
| 132 | - } else { |
|
| 133 | - echo ' <tr> |
|
| 131 | + } |
|
| 132 | + } else { |
|
| 133 | + echo ' <tr> |
|
| 134 | 134 | <td colspan="4"> |
| 135 | 135 | '.get_lang('NoOnlineStudents').' |
| 136 | 136 | </td> |
| 137 | 137 | </tr> |
| 138 | 138 | '; |
| 139 | - } |
|
| 140 | - } |
|
| 139 | + } |
|
| 140 | + } |
|
| 141 | 141 | ?> |
| 142 | 142 | </table> |
| 143 | 143 | <?php |