@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | */ |
14 | 14 | $use_anonymous = true; |
15 | 15 | require_once '../inc/global.inc.php'; |
16 | -$current_course_tool = TOOL_USER; |
|
16 | +$current_course_tool = TOOL_USER; |
|
17 | 17 | $this_section = SECTION_COURSES; |
18 | 18 | |
19 | 19 | // notice for unauthorized people. |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | |
42 | 42 | //Can't auto unregister from a session |
43 | 43 | if (!empty($sessionId)) { |
44 | - $course_info['unsubscribe'] = 0; |
|
44 | + $course_info['unsubscribe'] = 0; |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | /* Unregistering a user section */ |
@@ -184,7 +184,7 @@ discard block |
||
184 | 184 | '#', |
185 | 185 | get_lang('UserPicture'), |
186 | 186 | get_lang('OfficialCode'), |
187 | - get_lang('FirstName') . ', ' . get_lang('LastName'), |
|
187 | + get_lang('FirstName').', '.get_lang('LastName'), |
|
188 | 188 | get_lang('Email'), |
189 | 189 | get_lang('Phone') |
190 | 190 | ); |
@@ -193,7 +193,7 @@ discard block |
||
193 | 193 | '#', |
194 | 194 | get_lang('UserPicture'), |
195 | 195 | get_lang('OfficialCode'), |
196 | - get_lang('LastName') . ', ' . get_lang('FirstName'), |
|
196 | + get_lang('LastName').', '.get_lang('FirstName'), |
|
197 | 197 | get_lang('Email'), |
198 | 198 | get_lang('Phone') |
199 | 199 | ); |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | if (api_is_multiple_url_enabled()) { |
219 | 219 | $sql .= ' , '.Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_USER).' au '; |
220 | 220 | } |
221 | - $sql .=" WHERE c_id = '$courseId' AND session_course_user.user_id = user.user_id "; |
|
221 | + $sql .= " WHERE c_id = '$courseId' AND session_course_user.user_id = user.user_id "; |
|
222 | 222 | $sql .= ' AND session_id = '.$sessionId; |
223 | 223 | |
224 | 224 | if (api_is_multiple_url_enabled()) { |
@@ -252,7 +252,7 @@ discard block |
||
252 | 252 | true |
253 | 253 | ); |
254 | 254 | if (!empty($extra_fields)) { |
255 | - foreach($extra_fields as $key => $extra_value) { |
|
255 | + foreach ($extra_fields as $key => $extra_value) { |
|
256 | 256 | $user[$key] = $extra_value; |
257 | 257 | } |
258 | 258 | } |
@@ -266,7 +266,7 @@ discard block |
||
266 | 266 | $counter, |
267 | 267 | $user_image, |
268 | 268 | $user['official_code'], |
269 | - $user['firstname'] . ', ' . $user['lastname'], |
|
269 | + $user['firstname'].', '.$user['lastname'], |
|
270 | 270 | $user['email'], |
271 | 271 | $user['phone'] |
272 | 272 | ); |
@@ -275,7 +275,7 @@ discard block |
||
275 | 275 | $counter, |
276 | 276 | $user_image, |
277 | 277 | $user['official_code'], |
278 | - $user['lastname'] . ', ' . $user['firstname'], |
|
278 | + $user['lastname'].', '.$user['firstname'], |
|
279 | 279 | $user['email'], |
280 | 280 | $user['phone'] |
281 | 281 | ); |
@@ -354,7 +354,7 @@ discard block |
||
354 | 354 | $counter, |
355 | 355 | $user_image, |
356 | 356 | $user['official_code'], |
357 | - $user['firstname'] . ', ' . $user['lastname'], |
|
357 | + $user['firstname'].', '.$user['lastname'], |
|
358 | 358 | $user['email'], |
359 | 359 | $user['phone'] |
360 | 360 | ); |
@@ -363,7 +363,7 @@ discard block |
||
363 | 363 | $counter, |
364 | 364 | $user_image, |
365 | 365 | $user['official_code'], |
366 | - $user['lastname'] . ', ' . $user['firstname'], |
|
366 | + $user['lastname'].', '.$user['firstname'], |
|
367 | 367 | $user['email'], |
368 | 368 | $user['phone'] |
369 | 369 | ); |
@@ -700,7 +700,7 @@ discard block |
||
700 | 700 | $userInfo = api_get_user_info($user_id); |
701 | 701 | $userPicture = $userInfo['avatar']; |
702 | 702 | |
703 | - $photo= '<img src="'.$userPicture.'" alt="'.$userInfo['complete_name'].'" width="22" height="22" title="'.$userInfo['complete_name'].'" />'; |
|
703 | + $photo = '<img src="'.$userPicture.'" alt="'.$userInfo['complete_name'].'" width="22" height="22" title="'.$userInfo['complete_name'].'" />'; |
|
704 | 704 | |
705 | 705 | $temp[] = $user_id; |
706 | 706 | $temp[] = $photo; |
@@ -821,7 +821,7 @@ discard block |
||
821 | 821 | if (api_get_setting('allow_user_course_subscription_by_course_admin') == 'true' or api_is_platform_admin()) { |
822 | 822 | // unregister |
823 | 823 | if ($user_id != $current_user_id || api_is_platform_admin()) { |
824 | - $result .= '<a class="btn btn-small btn-danger" href="'.api_get_self().'?'.api_get_cidreq().'&type='.$type.'&unregister=yes&user_id='.$user_id.'" title="'.get_lang('Unreg').' " onclick="javascript:if(!confirm(\''.addslashes(api_htmlentities(get_lang('ConfirmYourChoice'),ENT_QUOTES,$charset)).'\')) return false;">'. |
|
824 | + $result .= '<a class="btn btn-small btn-danger" href="'.api_get_self().'?'.api_get_cidreq().'&type='.$type.'&unregister=yes&user_id='.$user_id.'" title="'.get_lang('Unreg').' " onclick="javascript:if(!confirm(\''.addslashes(api_htmlentities(get_lang('ConfirmYourChoice'), ENT_QUOTES, $charset)).'\')) return false;">'. |
|
825 | 825 | get_lang('Unreg').'</a> '; |
826 | 826 | } else { |
827 | 827 | //$result .= Display::return_icon('unsubscribe_course_na.png', get_lang('Unreg'),'',ICON_SIZE_SMALL).'</a> '; |
@@ -831,7 +831,7 @@ discard block |
||
831 | 831 | // Show buttons for unsubscribe |
832 | 832 | if ($course_info['unsubscribe'] == 1) { |
833 | 833 | if ($user_id == $current_user_id) { |
834 | - $result .= '<a class="btn btn-small btn-danger" href="'.api_get_self().'?'.api_get_cidreq().'&type='.$type.'&unregister=yes&user_id='.$user_id.'" title="'.get_lang('Unreg').' " onclick="javascript:if(!confirm(\''.addslashes(api_htmlentities(get_lang('ConfirmYourChoice'),ENT_QUOTES,$charset)).'\')) return false;">'. |
|
834 | + $result .= '<a class="btn btn-small btn-danger" href="'.api_get_self().'?'.api_get_cidreq().'&type='.$type.'&unregister=yes&user_id='.$user_id.'" title="'.get_lang('Unreg').' " onclick="javascript:if(!confirm(\''.addslashes(api_htmlentities(get_lang('ConfirmYourChoice'), ENT_QUOTES, $charset)).'\')) return false;">'. |
|
835 | 835 | get_lang('Unreg').'</a> '; |
836 | 836 | } |
837 | 837 | } |
@@ -907,7 +907,7 @@ discard block |
||
907 | 907 | |
908 | 908 | // Actions column |
909 | 909 | $table->set_header($header_nr++, get_lang('Action'), false); |
910 | - $table->set_column_filter($header_nr-1, 'modify_filter'); |
|
910 | + $table->set_column_filter($header_nr - 1, 'modify_filter'); |
|
911 | 911 | |
912 | 912 | if (api_get_setting('allow_user_course_subscription_by_course_admin') == 'true') { |
913 | 913 | $table->set_form_actions(array('unsubscribe' => get_lang('Unreg')), 'user'); |
@@ -915,7 +915,7 @@ discard block |
||
915 | 915 | } else { |
916 | 916 | if ($course_info['unsubscribe'] == 1) { |
917 | 917 | $table->set_header($header_nr++, get_lang('Action'), false); |
918 | - $table->set_column_filter($header_nr-1, 'modify_filter'); |
|
918 | + $table->set_column_filter($header_nr - 1, 'modify_filter'); |
|
919 | 919 | } |
920 | 920 | } |
921 | 921 | |
@@ -971,19 +971,19 @@ discard block |
||
971 | 971 | echo '<div class="col-md-6">'; |
972 | 972 | echo $icon; |
973 | 973 | $actions .= '<a href="user.php?'.api_get_cidreq().'&action=export&format=csv&type='.$type.'">'. |
974 | - Display::return_icon('export_csv.png', get_lang('ExportAsCSV'),'',ICON_SIZE_MEDIUM).'</a> '; |
|
974 | + Display::return_icon('export_csv.png', get_lang('ExportAsCSV'), '', ICON_SIZE_MEDIUM).'</a> '; |
|
975 | 975 | $actions .= '<a href="user.php?'.api_get_cidreq().'&action=export&format=xls&type='.$type.'">'. |
976 | - Display::return_icon('export_excel.png', get_lang('ExportAsXLS'),'',ICON_SIZE_MEDIUM).'</a> '; |
|
976 | + Display::return_icon('export_excel.png', get_lang('ExportAsXLS'), '', ICON_SIZE_MEDIUM).'</a> '; |
|
977 | 977 | |
978 | 978 | if (api_get_setting('allow_user_course_subscription_by_course_admin') == 'true' || |
979 | 979 | api_is_platform_admin() |
980 | 980 | ) { |
981 | 981 | $actions .= '<a href="user_import.php?'.api_get_cidreq().'&action=import">'. |
982 | - Display::return_icon('import_csv.png', get_lang('ImportUsersToACourse'),'',ICON_SIZE_MEDIUM).'</a> '; |
|
982 | + Display::return_icon('import_csv.png', get_lang('ImportUsersToACourse'), '', ICON_SIZE_MEDIUM).'</a> '; |
|
983 | 983 | } |
984 | 984 | |
985 | 985 | $actions .= '<a href="user.php?'.api_get_cidreq().'&action=export&format=pdf&type='.$type.'">'. |
986 | - Display::return_icon('pdf.png', get_lang('ExportToPDF'),'',ICON_SIZE_MEDIUM).'</a> '; |
|
986 | + Display::return_icon('pdf.png', get_lang('ExportToPDF'), '', ICON_SIZE_MEDIUM).'</a> '; |
|
987 | 987 | echo $actions; |
988 | 988 | |
989 | 989 | echo '</div>'; |
@@ -56,15 +56,15 @@ discard block |
||
56 | 56 | ); |
57 | 57 | |
58 | 58 | //Column config |
59 | - $column_model = array( |
|
60 | - array('name'=>'name', 'index'=>'name', 'width'=>'160', 'align'=>'left', 'search' => 'true', 'wrap_cell' => "true"), |
|
61 | - array('name'=>'nbr_courses', 'index'=>'nbr_courses', 'width'=>'30', 'align'=>'left', 'search' => 'true'), |
|
62 | - array('name'=>'nbr_users', 'index'=>'nbr_users', 'width'=>'30', 'align'=>'left', 'search' => 'true'), |
|
63 | - array('name'=>'category_name', 'index'=>'category_name', 'width'=>'70', 'align'=>'left', 'search' => 'true'), |
|
64 | - array('name'=>'access_start_date', 'index'=>'access_start_date', 'width'=>'40', 'align'=>'left', 'search' => 'true'), |
|
65 | - array('name'=>'access_end_date', 'index'=>'access_end_date', 'width'=>'40', 'align'=>'left', 'search' => 'true'), |
|
66 | - array('name'=>'coach_name', 'index'=>'coach_name', 'width'=>'80', 'align'=>'left', 'search' => 'false'), |
|
67 | - array('name'=>'status', 'index'=>'session_active','width'=>'40', 'align'=>'left', 'search' => 'true', 'stype'=>'select', |
|
59 | + $column_model = array( |
|
60 | + array('name'=>'name', 'index'=>'name', 'width'=>'160', 'align'=>'left', 'search' => 'true', 'wrap_cell' => "true"), |
|
61 | + array('name'=>'nbr_courses', 'index'=>'nbr_courses', 'width'=>'30', 'align'=>'left', 'search' => 'true'), |
|
62 | + array('name'=>'nbr_users', 'index'=>'nbr_users', 'width'=>'30', 'align'=>'left', 'search' => 'true'), |
|
63 | + array('name'=>'category_name', 'index'=>'category_name', 'width'=>'70', 'align'=>'left', 'search' => 'true'), |
|
64 | + array('name'=>'access_start_date', 'index'=>'access_start_date', 'width'=>'40', 'align'=>'left', 'search' => 'true'), |
|
65 | + array('name'=>'access_end_date', 'index'=>'access_end_date', 'width'=>'40', 'align'=>'left', 'search' => 'true'), |
|
66 | + array('name'=>'coach_name', 'index'=>'coach_name', 'width'=>'80', 'align'=>'left', 'search' => 'false'), |
|
67 | + array('name'=>'status', 'index'=>'session_active', 'width'=>'40', 'align'=>'left', 'search' => 'true', 'stype'=>'select', |
|
68 | 68 | //for the bottom bar |
69 | 69 | 'searchoptions' => array( |
70 | 70 | 'defaultValue' => '1', |
@@ -72,8 +72,8 @@ discard block |
||
72 | 72 | ), |
73 | 73 | //for the top bar |
74 | 74 | 'editoptions' => array('value' => ':'.get_lang('All').';1:'.get_lang('Active').';0:'.get_lang('Inactive'))), |
75 | - array('name'=>'visibility', 'index'=>'visibility', 'width'=>'40', 'align'=>'left', 'search' => 'false'), |
|
76 | - array('name'=>'actions', 'index'=>'actions', 'width'=>'100', 'align'=>'left','formatter'=>'action_formatter','sortable'=>'false', 'search' => 'false') |
|
75 | + array('name'=>'visibility', 'index'=>'visibility', 'width'=>'40', 'align'=>'left', 'search' => 'false'), |
|
76 | + array('name'=>'actions', 'index'=>'actions', 'width'=>'100', 'align'=>'left', 'formatter'=>'action_formatter', 'sortable'=>'false', 'search' => 'false') |
|
77 | 77 | ); |
78 | 78 | //Autowidth |
79 | 79 | $extra_params['autowidth'] = 'true'; |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | |
86 | 86 | //With this function we can add actions to the jgrid (edit, delete, etc) |
87 | 87 | $action_links = 'function action_formatter(cellvalue, options, rowObject) { |
88 | - return \' <a href="add_users_to_session.php?page=session_list.php&id_session=\'+options.rowId+\'">'.Display::return_icon('user_subscribe_session.png',get_lang('SubscribeUsersToSession'),'',ICON_SIZE_SMALL).'</a>'. |
|
88 | + return \' <a href="add_users_to_session.php?page=session_list.php&id_session=\'+options.rowId+\'">'.Display::return_icon('user_subscribe_session.png', get_lang('SubscribeUsersToSession'), '', ICON_SIZE_SMALL).'</a>'. |
|
89 | 89 | '\'; |
90 | 90 | }'; |
91 | 91 | ?> |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | |
107 | 107 | $(function() { |
108 | 108 | <?php |
109 | - echo Display::grid_js('sessions', $url,$columns,$column_model,$extra_params, array(), $action_links,true); |
|
109 | + echo Display::grid_js('sessions', $url, $columns, $column_model, $extra_params, array(), $action_links, true); |
|
110 | 110 | ?> |
111 | 111 | |
112 | 112 | setSearchSelect("status"); |
@@ -148,9 +148,9 @@ discard block |
||
148 | 148 | <?php if (api_is_platform_admin()) {?> |
149 | 149 | <div class="actions"> |
150 | 150 | <?php |
151 | - echo '<a href="'.api_get_path(WEB_CODE_PATH).'session/session_add.php">'.Display::return_icon('new_session.png',get_lang('AddSession'),'',ICON_SIZE_MEDIUM).'</a>'; |
|
152 | - echo '<a href="'.api_get_path(WEB_CODE_PATH).'session/add_many_session_to_category.php">'.Display::return_icon('session_to_category.png',get_lang('AddSessionsInCategories'),'',ICON_SIZE_MEDIUM).'</a>'; |
|
153 | - echo '<a href="'.api_get_path(WEB_CODE_PATH).'session/session_category_list.php">'.Display::return_icon('folder.png',get_lang('ListSessionCategory'),'',ICON_SIZE_MEDIUM).'</a>'; |
|
151 | + echo '<a href="'.api_get_path(WEB_CODE_PATH).'session/session_add.php">'.Display::return_icon('new_session.png', get_lang('AddSession'), '', ICON_SIZE_MEDIUM).'</a>'; |
|
152 | + echo '<a href="'.api_get_path(WEB_CODE_PATH).'session/add_many_session_to_category.php">'.Display::return_icon('session_to_category.png', get_lang('AddSessionsInCategories'), '', ICON_SIZE_MEDIUM).'</a>'; |
|
153 | + echo '<a href="'.api_get_path(WEB_CODE_PATH).'session/session_category_list.php">'.Display::return_icon('folder.png', get_lang('ListSessionCategory'), '', ICON_SIZE_MEDIUM).'</a>'; |
|
154 | 154 | echo '</div>'; |
155 | 155 | } |
156 | 156 | } else { |
@@ -146,7 +146,7 @@ |
||
146 | 146 | $(function() { |
147 | 147 | <?php |
148 | 148 | // grid definition see the $usergroup>display() function |
149 | - echo Display::grid_js('usergroups', $url, $columns, $columnModel, $extraParams, array(), '', true); |
|
149 | + echo Display::grid_js('usergroups', $url, $columns, $columnModel, $extraParams, array(), '', true); |
|
150 | 150 | ?> |
151 | 151 | }); |
152 | 152 | </script> |
@@ -12,9 +12,9 @@ |
||
12 | 12 | |
13 | 13 | $this_section = SECTION_COURSES; |
14 | 14 | |
15 | -$interbreadcrumb[]= array ('url' =>'classes.php','name' => get_lang('Classes')); |
|
15 | +$interbreadcrumb[] = array('url' =>'classes.php', 'name' => get_lang('Classes')); |
|
16 | 16 | if (isset($_GET['id'])) { |
17 | - $interbreadcrumb[]= array ('url' =>'#','name' => get_lang('Groups')); |
|
17 | + $interbreadcrumb[] = array('url' =>'#', 'name' => get_lang('Groups')); |
|
18 | 18 | } |
19 | 19 | |
20 | 20 | Display :: display_header($tool_name, 'Classes'); |
@@ -15,8 +15,8 @@ discard block |
||
15 | 15 | |
16 | 16 | $tool_name = get_lang('ImportUsersToACourse'); |
17 | 17 | |
18 | -$interbreadcrumb[] = array ("url" => "user.php", "name" => get_lang("Users")); |
|
19 | -$interbreadcrumb[] = array ("url" => "#", "name" => get_lang("ImportUsersToACourse")); |
|
18 | +$interbreadcrumb[] = array("url" => "user.php", "name" => get_lang("Users")); |
|
19 | +$interbreadcrumb[] = array("url" => "#", "name" => get_lang("ImportUsersToACourse")); |
|
20 | 20 | |
21 | 21 | $form = new FormValidator('user_import', 'post', 'user_import.php'); |
22 | 22 | $form->addElement('header', $tool_name); |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | if (isset($_FILES['import_file']['size']) && $_FILES['import_file']['size'] !== 0) { |
43 | 43 | $unsubscribe_users = isset($_POST['unsubscribe_users']) ? true : false; |
44 | 44 | //@todo : csvToArray deprecated |
45 | - $users = Import::csvToArray($_FILES['import_file']['tmp_name']); |
|
45 | + $users = Import::csvToArray($_FILES['import_file']['tmp_name']); |
|
46 | 46 | $invalid_users = array(); |
47 | 47 | $clean_users = array(); |
48 | 48 | |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | $user_ids = array(); |
80 | 80 | foreach ($current_user_list as $user) { |
81 | 81 | if (!CourseManager::is_course_teacher($user['user_id'], $course_code)) { |
82 | - $user_ids[]= $user['user_id']; |
|
82 | + $user_ids[] = $user['user_id']; |
|
83 | 83 | } |
84 | 84 | } |
85 | 85 | CourseManager::unsubscribe_user($user_ids, $course_code, $session_id); |
@@ -92,12 +92,12 @@ discard block |
||
92 | 92 | if (empty($session_id)) { |
93 | 93 | //just to make sure |
94 | 94 | if (CourseManager :: is_user_subscribed_in_course($userId, $course_code)) { |
95 | - $user_to_show[]= $userInfo['complete_name']; |
|
95 | + $user_to_show[] = $userInfo['complete_name']; |
|
96 | 96 | } |
97 | 97 | } else { |
98 | 98 | //just to make sure |
99 | 99 | if (CourseManager::is_user_subscribed_in_course($userId, $course_code, true, $session_id)) { |
100 | - $user_to_show[]= $userInfo['complete_name']; |
|
100 | + $user_to_show[] = $userInfo['complete_name']; |
|
101 | 101 | } |
102 | 102 | } |
103 | 103 | } |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | $message = get_lang('CheckUsersWithId'); |
106 | 106 | $type = 'warning'; |
107 | 107 | foreach ($invalid_users as $invalid_user) { |
108 | - $user_to_show[]= $invalid_user; |
|
108 | + $user_to_show[] = $invalid_user; |
|
109 | 109 | } |
110 | 110 | } |
111 | 111 | } |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | Display::display_warning_message($message.': <br />'.$userMessage, false); |
131 | 131 | } |
132 | 132 | } else { |
133 | - $empty_line_msg = ($empty_line == 0) ? get_lang('ErrorsWhenImportingFile'): get_lang('ErrorsWhenImportingFile').': '.get_lang('EmptyHeaderLine'); |
|
133 | + $empty_line_msg = ($empty_line == 0) ? get_lang('ErrorsWhenImportingFile') : get_lang('ErrorsWhenImportingFile').': '.get_lang('EmptyHeaderLine'); |
|
134 | 134 | Display::display_error_message($empty_line_msg); |
135 | 135 | } |
136 | 136 | } |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | $strings['VideoConferenceAddedToTheCalendar'] = "Videoconference added to the calendar"; |
21 | 21 | $strings['VideoConferenceAddedToTheLinkTool'] = "Videoconference added to the link tool"; |
22 | 22 | |
23 | -$strings['GoToTheVideoConference'] = "Go to the videoconference"; |
|
23 | +$strings['GoToTheVideoConference'] = "Go to the videoconference"; |
|
24 | 24 | |
25 | 25 | $strings['Records'] = "Recording"; |
26 | 26 | $strings['Meeting'] = "Meeting"; |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | $strings['EnterConference'] = "Enter the videoconference"; |
32 | 32 | $strings['RecordList'] = "Recording list"; |
33 | 33 | $strings['ServerIsNotRunning'] = "Videoconference server is not running"; |
34 | -$strings['ServerIsNotConfigured'] = "Videoconference server is not configured"; |
|
34 | +$strings['ServerIsNotConfigured'] = "Videoconference server is not configured"; |
|
35 | 35 | |
36 | 36 | $strings['XUsersOnLine'] = "%s user(s) online"; |
37 | 37 |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | $strings['VideoConferenceAddedToTheCalendar'] = "Vidéoconférence ajoutée au calendrier"; |
14 | 14 | $strings['VideoConferenceAddedToTheLinkTool'] = "Vidéoconférence ajoutée comme lien. Vous pouvez éditer et publier le lien sur la page principale du cours depuis l'outil liens."; |
15 | 15 | |
16 | -$strings['GoToTheVideoConference'] = "Entrer dans la salle de conférence"; |
|
16 | +$strings['GoToTheVideoConference'] = "Entrer dans la salle de conférence"; |
|
17 | 17 | |
18 | 18 | $strings['Records'] = "Enregistrement"; |
19 | 19 | $strings['Meeting'] = "Salle de conférence"; |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | $strings['EnterConference'] = "Entrer dans la salle de conférence"; |
25 | 25 | $strings['RecordList'] = "Liste des enregistrements"; |
26 | 26 | $strings['ServerIsNotRunning'] = "Le serveur de vidéoconférence ne fonctionne pas"; |
27 | -$strings['ServerIsNotConfigured'] = "Le serveur de vidéoconférence n'est pas configuré correctement"; |
|
27 | +$strings['ServerIsNotConfigured'] = "Le serveur de vidéoconférence n'est pas configuré correctement"; |
|
28 | 28 | |
29 | 29 | $strings['XUsersOnLine'] = "%s utilisateurs dans la salle"; |
30 | 30 |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | $strings['VideoConferenceAddedToTheCalendar'] = "Videoconferencia añadida al calendario"; |
14 | 14 | $strings['VideoConferenceAddedToTheLinkTool'] = "Videoconferencia añadida como enlace. Puede editar y publicar el enlace en la página principal del curso desde la herramienta de enlace."; |
15 | 15 | |
16 | -$strings['GoToTheVideoConference'] = "Ir a la videoconferencia"; |
|
16 | +$strings['GoToTheVideoConference'] = "Ir a la videoconferencia"; |
|
17 | 17 | |
18 | 18 | $strings['Records'] = "Grabación"; |
19 | 19 | $strings['Meeting'] = "Sala de conferencia"; |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | $strings['EnterConference'] = "Entrar a la videoconferencia"; |
25 | 25 | $strings['RecordList'] = "Lista de grabaciones"; |
26 | 26 | $strings['ServerIsNotRunning'] = "El servidor de videoconferencia no está funcionando"; |
27 | -$strings['ServerIsNotConfigured'] = "El servidor de videoconferencia no está configurado correctamente"; |
|
27 | +$strings['ServerIsNotConfigured'] = "El servidor de videoconferencia no está configurado correctamente"; |
|
28 | 28 | |
29 | 29 | $strings['XUsersOnLine'] = "%s usuario(s) en la sala"; |
30 | 30 |
@@ -5,6 +5,6 @@ |
||
5 | 5 | * @author Imanol Losada Oriol <[email protected]> |
6 | 6 | * @package chamilo.plugin.skype |
7 | 7 | */ |
8 | -require_once __DIR__ . '/config.php'; |
|
8 | +require_once __DIR__.'/config.php'; |
|
9 | 9 | |
10 | 10 | Skype::create()->install(); |