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);
?>
-