*/
$cidReset = true;
require_once __DIR__.'/../inc/global.inc.php';
$this_section = SECTION_PLATFORM_ADMIN;
api_protect_global_admin_script();
if (!api_get_multiple_access_url()) {
header('Location: index.php');
exit;
}
$userGroup = new UserGroup();
$firstLetterUserGroup = null;
$courses = [];
$url_list = [];
$tbl_access_url = Database::get_main_table(TABLE_MAIN_ACCESS_URL);
$tool_name = get_lang('Add group to URL');
$interbreadcrumb[] = ['url' => 'index.php', 'name' => get_lang('Administration')];
$interbreadcrumb[] = ['url' => 'access_urls.php', 'name' => get_lang('Multiple access URL / Branding')];
Display::display_header($tool_name);
echo '
';
echo Display::url(
Display::return_icon('edit.png', get_lang('Edit groups for one URL'), ''),
api_get_path(WEB_CODE_PATH).'admin/access_url_edit_usergroup_to_url.php'
);
echo '
';
api_display_tool_title($tool_name);
if (isset($_POST['form_sent']) && $_POST['form_sent']) {
$form_sent = $_POST['form_sent'];
$userGroups = is_array($_POST['user_group_list']) ? $_POST['user_group_list'] : [];
$urlList = is_array($_POST['url_list']) ? $_POST['url_list'] : [];
$firstLetterUserGroup = $_POST['first_letter_user_group'];
if ($form_sent == 1) {
if (count($userGroups) == 0 || count($urlList) == 0) {
echo Display::return_message(get_lang('You need to select at least one group and one site'), 'error');
} else {
UrlManager::addUserGroupListToUrl($userGroups, $urlList);
echo Display::return_message(get_lang('The group now belongs to the selected site'), 'confirm');
}
}
}
$firstLetterUser = null;
if ($userGroup->getTotalCount() > 1000) {
//if there are too much num_courses to gracefully handle with the HTML select list,
// assign a default filter on users names
$firstLetterUser = 'A';
}
$dbUserGroups = $userGroup->filterByFirstLetter($firstLetterUserGroup);
$sql = "SELECT id, url FROM $tbl_access_url WHERE active = 1 ORDER BY url";
$result = Database::query($sql);
$db_urls = Database::store_result($result);
?>