diff --git a/main/admin/access_url_edit_usergroup_to_url.php b/main/admin/access_url_edit_usergroup_to_url.php index 2b194774ab..710b572ccb 100755 --- a/main/admin/access_url_edit_usergroup_to_url.php +++ b/main/admin/access_url_edit_usergroup_to_url.php @@ -54,7 +54,7 @@ function add_user_to_url(code, content) { function send() { if (document.formulaire.access_url_id.value!=0) { document.formulaire.form_sent.value=0; - document.formulaire.add_type.value=\'' . $add_type . '\'; + document.formulaire.add_type.value=\'' . $add_type.'\'; document.formulaire.submit(); } } @@ -100,7 +100,7 @@ Display::display_header($tool_name); echo '
'; echo Display::url( Display::return_icon('view_more_stats.gif', get_lang('AddUserGroupToURL'), ''), - api_get_path(WEB_CODE_PATH) . 'admin/access_url_add_usergroup_to_url.php' + api_get_path(WEB_CODE_PATH).'admin/access_url_add_usergroup_to_url.php' ); echo '
'; @@ -138,7 +138,7 @@ if ($add_type == 'multiple') { 'unique', 'access_url_id' => $access_url_id ]), @@ -148,7 +148,7 @@ if ($add_type == 'multiple') { ); echo Display::toolbarButton( get_lang('SessionAddTypeMultiple'), - api_get_self() . '?' . http_build_query([ + api_get_self().'?'.http_build_query([ 'add_type' => 'multiple', 'access_url_id' => $access_url_id ]), diff --git a/main/admin/dashboard_add_users_to_user.php b/main/admin/dashboard_add_users_to_user.php index 86e7033c8c..6643231114 100755 --- a/main/admin/dashboard_add_users_to_user.php +++ b/main/admin/dashboard_add_users_to_user.php @@ -24,7 +24,7 @@ api_protect_admin_script(true); // setting breadcrumbs $interbreadcrumb[] = array('url' => 'index.php', 'name' => get_lang('PlatformAdmin')); -$interbreadcrumb[] = array('url' => 'user_list.php','name' => get_lang('UserList')); +$interbreadcrumb[] = array('url' => 'user_list.php', 'name' => get_lang('UserList')); // Database Table Definitions $tbl_user = Database::get_main_table(TABLE_MAIN_USER); @@ -44,17 +44,17 @@ $firstLetterUser = isset($_POST['firstLetterUser']) ? $_POST['firstLetterUser'] $isAdmin = UserManager::is_admin($user_id); if ($isAdmin) { $userStatus = PLATFORM_ADMIN; - $tool_name= get_lang('AssignUsersToPlatformAdministrator'); + $tool_name = get_lang('AssignUsersToPlatformAdministrator'); } else if ($user_info['status'] == SESSIONADMIN) { - $tool_name= get_lang('AssignUsersToSessionsAdministrator'); -} else if ($user_info['status'] == STUDENT_BOSS) { - $tool_name= get_lang('AssignUsersToBoss'); + $tool_name = get_lang('AssignUsersToSessionsAdministrator'); +} else if ($user_info['status'] == STUDENT_BOSS) { + $tool_name = get_lang('AssignUsersToBoss'); } else { - $tool_name= get_lang('AssignUsersToHumanResourcesManager'); + $tool_name = get_lang('AssignUsersToHumanResourcesManager'); } $add_type = 'multiple'; -if (isset($_GET['add_type']) && $_GET['add_type']!='') { +if (isset($_GET['add_type']) && $_GET['add_type'] != '') { $add_type = Security::remove_XSS($_REQUEST['add_type']); } @@ -64,7 +64,7 @@ if (!api_is_platform_admin()) { function search_users($needle, $type) { - global $tbl_access_url_rel_user, $tbl_user, $user_anonymous, $current_user_id, $user_id, $userStatus; + global $tbl_access_url_rel_user, $tbl_user, $user_anonymous, $current_user_id, $user_id, $userStatus; $xajax_response = new xajaxResponse(); $return = ''; @@ -102,7 +102,7 @@ function search_users($needle, $type) LEFT JOIN $tbl_access_url_rel_user au ON (au.user_id = user.user_id) WHERE ".(api_sort_by_first_name() ? 'firstname' : 'lastname')." LIKE '$needle%' AND - status NOT IN(".DRH.", ".SESSIONADMIN.", " . STUDENT_BOSS . ") AND + status NOT IN(".DRH.", ".SESSIONADMIN.", ".STUDENT_BOSS.") AND user.user_id NOT IN ($user_anonymous, $current_user_id, $user_id) $without_assigned_users AND access_url_id = ".api_get_current_access_url_id()." @@ -114,13 +114,13 @@ function search_users($needle, $type) FROM $tbl_user user WHERE ".(api_sort_by_first_name() ? 'firstname' : 'lastname')." LIKE '$needle%' AND - status NOT IN(".DRH.", ".SESSIONADMIN.", " . STUDENT_BOSS . ") AND + status NOT IN(".DRH.", ".SESSIONADMIN.", ".STUDENT_BOSS.") AND user_id NOT IN ($user_anonymous, $current_user_id, $user_id) $without_assigned_users $order_clause "; } - $rs = Database::query($sql); + $rs = Database::query($sql); $xajax_response->addAssign('ajax_list_users_multiple', 'innerHTML', api_utf8_encode($return)); if ($type == 'single') { @@ -140,10 +140,10 @@ function search_users($needle, $type) switch ($userStatus) { case DRH: - $sql .= " user.status <> 6 AND user.status <> " . DRH; + $sql .= " user.status <> 6 AND user.status <> ".DRH; break; case STUDENT_BOSS: - $sql .= " user.status <> 6 AND user.status <> " . STUDENT_BOSS; + $sql .= " user.status <> 6 AND user.status <> ".STUDENT_BOSS; break; } @@ -160,12 +160,12 @@ function search_users($needle, $type) $return .= '...
'; } } - $xajax_response->addAssign('ajax_list_users_single','innerHTML',api_utf8_encode($return)); + $xajax_response->addAssign('ajax_list_users_single', 'innerHTML', api_utf8_encode($return)); } else { $return .= ''; $xajax_response->addAssign('ajax_list_users_multiple', 'innerHTML', api_utf8_encode($return)); @@ -242,7 +242,7 @@ function remove_item(origin) { } '; -$formSent=0; +$formSent = 0; $errorMsg = ''; $UserList = array(); @@ -257,7 +257,7 @@ $filters = array( $searchForm = new FormValidator('search', 'get', api_get_self().'?user='.$user_id); $searchForm->addHeader(get_lang('AdvancedSearch')); -$renderer =& $searchForm->defaultRenderer(); +$renderer = & $searchForm->defaultRenderer(); $searchForm->addElement('hidden', 'user', $user_id); foreach ($filters as $param) { @@ -299,7 +299,7 @@ if (isset($_POST['formSent']) && intval($_POST['formSent']) == 1) { $affected_rows = 0; } - if ($affected_rows) { + if ($affected_rows) { $msg = get_lang('AssignedUsersHaveBeenUpdatedSuccessfully'); } } @@ -322,7 +322,7 @@ if ($userStatus != STUDENT_BOSS) { } $actionsRight = Display::url( - ' ' . get_lang('AdvancedSearch'), + ' '.get_lang('AdvancedSearch'), '#', array('class' => 'btn btn-default advanced_options', 'id' => 'advanced_search') ); @@ -359,13 +359,13 @@ switch ($userStatus) { $assigned_users_id = array_keys($assigned_users_to_hrm); $without_assigned_users = ''; if (count($assigned_users_id) > 0) { - $without_assigned_users = " user.user_id NOT IN(".implode(',',$assigned_users_id).") AND "; + $without_assigned_users = " user.user_id NOT IN(".implode(',', $assigned_users_id).") AND "; } $search_user = ''; if (!empty($firstLetterUser)) { $needle = Database::escape_string($firstLetterUser); - $search_user ="AND ".(api_sort_by_first_name() ? 'firstname' : 'lastname')." LIKE '$needle%'"; + $search_user = "AND ".(api_sort_by_first_name() ? 'firstname' : 'lastname')." LIKE '$needle%'"; } $sqlConditions = null; @@ -406,12 +406,12 @@ if (api_is_multiple_url_enabled()) { $sqlConditions ORDER BY firstname "; } -$result = Database::query($sql); +$result = Database::query($sql); ?> -
> +> @@ -427,7 +427,7 @@ if(!empty($msg)) { - @@ -440,8 +440,8 @@ if(!empty($msg)) {
- -

+ +

- get('enable_api') === 'true'; if ($geolocalization) { $gmapsApiKey = $gMapsPlugin->get('api_key'); - $htmlHeadXtra[] = ''; + $htmlHeadXtra[] = ''; } $htmlHeadXtra[] = api_get_password_checker_js('#username', '#password1'); @@ -119,10 +119,10 @@ $form = new FormValidator('profile'); if (api_is_western_name_order()) { // FIRST NAME and LAST NAME $form->addElement('text', 'firstname', get_lang('FirstName'), array('size' => 40)); - $form->addElement('text', 'lastname', get_lang('LastName'), array('size' => 40)); + $form->addElement('text', 'lastname', get_lang('LastName'), array('size' => 40)); } else { // LAST NAME and FIRST NAME - $form->addElement('text', 'lastname', get_lang('LastName'), array('size' => 40)); + $form->addElement('text', 'lastname', get_lang('LastName'), array('size' => 40)); $form->addElement('text', 'firstname', get_lang('FirstName'), array('size' => 40)); } if (api_get_setting('profile', 'name') !== 'true') { @@ -131,7 +131,7 @@ if (api_get_setting('profile', 'name') !== 'true') { $form->applyFilter(array('lastname', 'firstname'), 'stripslashes'); $form->applyFilter(array('lastname', 'firstname'), 'trim'); $form->applyFilter(array('lastname', 'firstname'), 'html_filter'); -$form->addRule('lastname' , get_lang('ThisFieldIsRequired'), 'required'); +$form->addRule('lastname', get_lang('ThisFieldIsRequired'), 'required'); $form->addRule('firstname', get_lang('ThisFieldIsRequired'), 'required'); // USERNAME @@ -176,7 +176,7 @@ if (api_get_setting('profile', 'email') !== 'true') { $form->freeze('email'); } -if (api_get_setting('registration', 'email') == 'true' && api_get_setting('profile', 'email') == 'true') { +if (api_get_setting('registration', 'email') == 'true' && api_get_setting('profile', 'email') == 'true') { $form->applyFilter('email', 'stripslashes'); $form->applyFilter('email', 'trim'); $form->addRule('email', get_lang('ThisFieldIsRequired'), 'required'); @@ -331,7 +331,7 @@ $jquery_ready_content = $return['jquery_ready_content']; // the $jquery_ready_content variable collects all functions that // will be load in the $(document).ready javascript function -$htmlHeadXtra[] =''; $form_sent = 0; - $firstLetterUser = $firstLetterSession=''; + $firstLetterUser = $firstLetterSession = ''; $UserList = $SessionList = array(); $sessions = array(); $noPHP_SELF = true; @@ -272,7 +272,7 @@ if ($allowTutors == 'true') { $UserList = $_POST['sessionUsersList']; if (!is_array($UserList)) { - $UserList=array(); + $UserList = array(); } if ($form_sent == 1) { @@ -302,7 +302,7 @@ if ($allowTutors == 'true') { WHERE u.status <> ".DRH." AND u.status<>6 $order_clause"; if (api_is_multiple_url_enabled()) { - $tbl_user_rel_access_url= Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_USER); + $tbl_user_rel_access_url = Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_USER); $access_url_id = api_get_current_access_url_id(); if ($access_url_id != -1) { $sql = "SELECT u.user_id, lastname, firstname, username, session_id @@ -321,7 +321,7 @@ if ($allowTutors == 'true') { $result = Database::query($sql); $users = Database::store_result($result); foreach ($users as $user) { - $sessionUsersList[$user['user_id']] = $user ; + $sessionUsersList[$user['user_id']] = $user; } unset($users); //clean to free memory } else { @@ -333,7 +333,7 @@ if ($allowTutors == 'true') { foreach ($new_field_list as $new_field) { $varname = 'field_'.$new_field['variable']; if (UserManager::is_extra_field_available($new_field['variable'])) { - if (isset($_POST[$varname]) && $_POST[$varname]!='0') { + if (isset($_POST[$varname]) && $_POST[$varname] != '0') { $use_extra_fields = true; $extra_field_result[] = UserManager::get_extra_user_data_by_value( $new_field['variable'], @@ -347,9 +347,9 @@ if ($allowTutors == 'true') { if ($use_extra_fields) { $final_result = array(); - if (count($extra_field_result)>1) { - for($i=0;$i 1) { + for ($i = 0; $i < count($extra_field_result) - 1; $i++) { + if (is_array($extra_field_result[$i + 1])) { $final_result = array_intersect( $extra_field_result[$i], $extra_field_result[$i + 1] @@ -360,17 +360,17 @@ if ($allowTutors == 'true') { $final_result = $extra_field_result[0]; } - $where_filter =''; + $where_filter = ''; if (api_is_multiple_url_enabled()) { - if (is_array($final_result) && count($final_result)>0) { - $where_filter = " AND u.user_id IN ('".implode("','",$final_result)."') "; + if (is_array($final_result) && count($final_result) > 0) { + $where_filter = " AND u.user_id IN ('".implode("','", $final_result)."') "; } else { //no results $where_filter = " AND u.user_id = -1"; } } else { - if (is_array($final_result) && count($final_result)>0) { - $where_filter = " WHERE u.user_id IN ('".implode("','",$final_result)."') "; + if (is_array($final_result) && count($final_result) > 0) { + $where_filter = " WHERE u.user_id IN ('".implode("','", $final_result)."') "; } else { //no results $where_filter = " WHERE u.user_id = -1"; @@ -399,7 +399,7 @@ if ($allowTutors == 'true') { $order_clause"; } if (api_is_multiple_url_enabled()) { - $tbl_user_rel_access_url= Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_USER); + $tbl_user_rel_access_url = Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_USER); $access_url_id = api_get_current_access_url_id(); if ($access_url_id != -1) { $sql = "SELECT u.user_id, lastname, firstname, username, session_id @@ -416,7 +416,7 @@ if ($allowTutors == 'true') { } $result = Database::query($sql); - $users = Database::store_result($result,'ASSOC'); + $users = Database::store_result($result, 'ASSOC'); foreach ($users as $uid => $user) { if ($user['session_id'] != $id_session) { @@ -441,7 +441,7 @@ if ($allowTutors == 'true') { WHERE u.status <> ".DRH." AND u.status<>6 $order_clause"; if (api_is_multiple_url_enabled()) { - $tbl_user_rel_access_url= Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_USER); + $tbl_user_rel_access_url = Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_USER); $access_url_id = api_get_current_access_url_id(); if ($access_url_id != -1) { $sql = "SELECT u.user_id, lastname, firstname, username, session_id @@ -457,11 +457,11 @@ if ($allowTutors == 'true') { } } $result = Database::query($sql); - $users = Database::store_result($result,'ASSOC'); + $users = Database::store_result($result, 'ASSOC'); foreach ($users as $uid => $user) { if ($user['session_id'] == $id_session) { $sessionUsersList[$user['user_id']] = $user; - if (array_key_exists($user['user_id'],$nosessionUsersList)) { + if (array_key_exists($user['user_id'], $nosessionUsersList)) { unset($nosessionUsersList[$user['user_id']]); } } @@ -483,20 +483,20 @@ if ($allowTutors == 'true') {
 |  | 
- > - '.$tool_name.' (' . $session->getName() . ') '; ?> + > + '.$tool_name.' ('.$session->getName().') '; ?> 0 ) { + if (is_array($new_field_list) && count($new_field_list) > 0) { echo '

'.get_lang('FilterUsers').'

'; foreach ($new_field_list as $new_field) { echo $new_field['name']; $varname = 'field_'.$new_field['variable']; echo '  getCompleteName() - . ' (' . $participant->getEmail() . ')'; + . ' ('.$participant->getEmail().')'; } } @@ -98,9 +98,9 @@ if (!$bbb->isServerRunning()) { } $htmlHeadXtra[] = api_get_js_simple( - api_get_path(WEB_PLUGIN_PATH) . 'bbb/resources/utils.js' + api_get_path(WEB_PLUGIN_PATH).'bbb/resources/utils.js' ); -$htmlHeadXtra[] = ""; +$htmlHeadXtra[] = ""; $tpl = new Template($tool_name); $tpl->assign('meetings', $meetings); @@ -112,7 +112,7 @@ $actions = []; if ($meetings) { $actions[] = Display::toolbarButton( get_lang('ExportInExcel'), - api_get_self() . '?' . http_build_query([ + api_get_self().'?'.http_build_query([ 'action' => 'export', 'search_meeting_start' => $dateStart, 'search_meeting_end' => $dateEnd diff --git a/plugin/courseblock/config.php b/plugin/courseblock/config.php index d7246055c0..130fbb1fe4 100644 --- a/plugin/courseblock/config.php +++ b/plugin/courseblock/config.php @@ -1,5 +1,5 @@ directory . '/course-pic85x85.png'); + return file_exists(api_get_path(SYS_COURSE_PATH).$this->directory.'/course-pic85x85.png'); } /** @@ -1206,9 +1206,9 @@ class Course } if ($fullSize) { - return api_get_path(WEB_COURSE_PATH) . $this->directory . '/course-pic.png'; + return api_get_path(WEB_COURSE_PATH).$this->directory.'/course-pic.png'; } - return api_get_path(WEB_COURSE_PATH) . $this->directory . '/course-pic85x85.png'; + return api_get_path(WEB_COURSE_PATH).$this->directory.'/course-pic85x85.png'; } }