*/ use Chamilo\CoreBundle\Component\Utils\ActionIcon; $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 UserGroupModel(); $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 Display::toolbarAction( 'url', [ Display::url( Display::getMdiIcon(ActionIcon::EDIT, 'ch-tool-icon', null, ICON_SIZE_SMALL, get_lang('Edit groups for one URL')), api_get_path(WEB_CODE_PATH).'admin/access_url_edit_usergroup_to_url.php' ), ] ); Display::page_subheader2($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 (1 == $form_sent) { if (0 == count($userGroups) || 0 == count($urlList)) { 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); ?>