*/ // resetting the course id $cidReset = true; require_once '../inc/global.inc.php'; $xajax = new xajax(); $xajax->registerFunction( array('search_courses', 'Accessurleditcoursestourl', 'search_courses') ); // 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; } // Database Table Definitions $tbl_access_url_rel_course = Database :: get_main_table(TABLE_MAIN_ACCESS_URL_REL_COURSE); $tbl_course = Database :: get_main_table(TABLE_MAIN_COURSE); $tbl_access_url = Database :: get_main_table(TABLE_MAIN_ACCESS_URL); // setting breadcrumbs $tool_name = get_lang('EditCoursesToURL'); $interbreadcrumb[] = array('url' => 'index.php', 'name' => get_lang('PlatformAdmin')); $interbreadcrumb[] = array('url' => 'access_urls.php', 'name' => get_lang('MultipleAccessURLs')); $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[] = ''; $form_sent = 0; $errorMsg = ''; $UserList = $SessionList = array(); $users = $sessions = array(); 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 = array(); } if ($form_sent == 1) { if ($access_url_id==0) { header('Location: access_url_edit_users_to_url.php?action=show_message&message='.get_lang('SelectURL')); } elseif (is_array($course_list)) { UrlManager::update_urls_rel_course($course_list, $access_url_id); header('Location: access_urls.php?action=show_message&message='.get_lang('CoursesWereEdited')); } } } Display::display_header($tool_name); echo '