*/ // resetting the course id $cidReset = true; require_once __DIR__.'/../inc/global.inc.php'; $xajax = new xajax(); $xajax->registerFunction(['searchUserGroupAjax', 'UserGroup', 'searchUserGroupAjax']); $userGroup = new UserGroup(); // Setting the section (for the tabs) $this_section = SECTION_PLATFORM_ADMIN; // Access restrictions api_protect_global_admin_script(); if (!api_get_multiple_access_url()) { header('Location: index.php'); exit; } // setting breadcrumbs $tool_name = get_lang('Edit groups for one URL'); $interbreadcrumb[] = ['url' => 'index.php', 'name' => get_lang('Administration')]; $interbreadcrumb[] = ['url' => 'access_urls.php', 'name' => get_lang('Multiple access URL / Branding')]; $add_type = 'multiple'; if (isset($_REQUEST['add_type']) && $_REQUEST['add_type'] != '') { $add_type = Security::remove_XSS($_REQUEST['add_type']); } $access_url_id = 1; if (isset($_REQUEST['access_url_id']) && $_REQUEST['access_url_id'] != '') { $access_url_id = Security::remove_XSS($_REQUEST['access_url_id']); } $xajax->processRequests(); $htmlHeadXtra[] = $xajax->getJavascript('../inc/lib/xajax/'); $htmlHeadXtra[] = ' '; $errorMsg = ''; if (isset($_POST['form_sent']) && $_POST['form_sent']) { $form_sent = $_POST['form_sent']; $course_list = $_POST['course_list']; if (!is_array($course_list)) { $course_list = []; } if ($form_sent == 1) { if ($access_url_id == 0) { Display::addFlash(Display::return_message(get_lang('Select a URL'))); header('Location: access_url_edit_users_to_url.php'); } elseif (is_array($course_list)) { UrlManager::update_urls_rel_usergroup($course_list, $access_url_id); Display::addFlash(Display::return_message(get_lang('Update successful'))); header('Location: access_urls.php'); } exit; } } Display::display_header($tool_name); echo '