category-less link is always visible. * * @author Julio Montoya code rewritten * @author Patrick Cool * @author René Haentjens, added CSV file import (October 2004) * @package chamilo.link */ require_once __DIR__.'/../inc/global.inc.php'; $current_course_tool = TOOL_LINK; $this_section = SECTION_COURSES; api_protect_course_script(true); $htmlHeadXtra[] = ''; // @todo change the $_REQUEST into $_POST or $_GET // @todo remove this code $link_submitted = isset($_POST['submitLink']); $category_submitted = isset($_POST['submitCategory']); $urlview = !empty($_GET['urlview']) ? $_GET['urlview'] : ''; $submit_import = !empty($_POST['submitImport']) ? $_POST['submitImport'] : ''; $down = !empty($_GET['down']) ? $_GET['down'] : ''; $up = !empty($_GET['up']) ? $_GET['up'] : ''; $catmove = !empty($_GET['catmove']) ? $_GET['catmove'] : ''; $editlink = !empty($_REQUEST['editlink']) ? $_REQUEST['editlink'] : ''; $id = !empty($_REQUEST['id']) ? $_REQUEST['id'] : ''; $urllink = !empty($_REQUEST['urllink']) ? $_REQUEST['urllink'] : ''; $title = !empty($_REQUEST['title']) ? $_REQUEST['title'] : ''; $description = !empty($_REQUEST['description']) ? $_REQUEST['description'] : ''; $selectcategory = !empty($_REQUEST['selectcategory']) ? $_REQUEST['selectcategory'] : ''; $submit_link = isset($_REQUEST['submitLink']); $action = !empty($_REQUEST['action']) ? $_REQUEST['action'] : ''; $category_title = !empty($_REQUEST['category_title']) ? $_REQUEST['category_title'] : ''; $submit_category = isset($_POST['submitCategory']); $target_link = !empty($_REQUEST['target_link']) ? $_REQUEST['target_link'] : '_self'; $nameTools = get_lang('Links'); $course_id = api_get_course_int_id(); // Condition for the session $session_id = api_get_session_id(); $condition_session = api_get_session_condition($session_id, true, true); if ($action === 'addlink') { $nameTools = ''; $interbreadcrumb[] = array('url' => 'link.php', 'name' => get_lang('Links')); $interbreadcrumb[] = array('url' => '#', 'name' => get_lang('AddLink')); } if ($action === 'addcategory') { $nameTools = ''; $interbreadcrumb[] = array('url' => 'link.php', 'name' => get_lang('Links')); $interbreadcrumb[] = array('url' => '#', 'name' => get_lang('AddCategory')); } if ($action === 'editlink') { $nameTools = ''; $interbreadcrumb[] = array('url' => 'link.php', 'name' => get_lang('Links')); $interbreadcrumb[] = array('url' => '#', 'name' => get_lang('EditLink')); } // Statistics Event::event_access_tool(TOOL_LINK); /* Action Handling */ $nameTools = get_lang('Links'); $id = isset($_REQUEST['id']) ? $_REQUEST['id'] : null; $scope = isset($_REQUEST['scope']) ? $_REQUEST['scope'] : null; $show = isset($_REQUEST['show']) && in_array(trim($_REQUEST['show']), ['all', 'none']) ? $_REQUEST['show'] : ''; $categoryId = isset($_REQUEST['category_id']) ? intval($_REQUEST['category_id']) : ''; $linkListUrl = api_get_self().'?'.api_get_cidreq().'&category_id='.$categoryId.'&show='.$show; $content = ''; $token = Security::get_existing_token(); switch ($action) { case 'addlink': if (api_is_allowed_to_edit(null, true)) { $form = Link::getLinkForm(null, 'addlink', $token); if ($form->validate() && Security::check_token('get')) { // Here we add a link Link::addlinkcategory("link"); Security::clear_token(); header('Location: '.$linkListUrl); exit; } $content = $form->returnForm(); } break; case 'editlink': $form = Link::getLinkForm($id, 'editlink'); if ($form->validate()) { Link::editLink($id, $form->getSubmitValues()); header('Location: '.$linkListUrl); exit; } $content = $form->returnForm(); break; case 'addcategory': if (api_is_allowed_to_edit(null, true)) { $form = Link::getCategoryForm(null, 'addcategory'); if ($form->validate()) { // Here we add a category Link::addlinkcategory('category'); header('Location: '.$linkListUrl); exit; } $content = $form->returnForm(); } break; case 'editcategory': if (api_is_allowed_to_edit(null, true)) { $form = Link::getCategoryForm($id, 'editcategory'); if ($form->validate()) { // Here we edit a category Link::editCategory($id, $form->getSubmitValues()); header('Location: '.$linkListUrl); exit; } $content = $form->returnForm(); } break; case 'deletelink': // Here we delete a link Link::deletelinkcategory($id, 'link'); header('Location: '.$linkListUrl); exit; break; case 'deletecategory': // Here we delete a category Link::deletelinkcategory($id, 'category'); header('Location: '.$linkListUrl); exit; break; case 'visible': // Here we edit a category Link::change_visibility_link($id, $scope); header('Location: '.$linkListUrl); exit; break; case 'invisible': // Here we edit a category Link::change_visibility_link($id, $scope); header('Location: '.$linkListUrl); exit; break; case 'up': Link::movecatlink('up', $up); header('Location: '.$linkListUrl); exit; break; case 'down': Link::movecatlink('down', $down); header('Location: '.$linkListUrl); exit; break; case 'move_link_up': Link::moveLinkUp($id); header('Location: '.$linkListUrl); exit; break; case 'move_link_down': Link::moveLinkDown($id); header('Location: '.$linkListUrl); exit; break; case 'list': default: ob_start(); Link::listLinksAndCategories($course_id, $session_id, $categoryId, $show); $content = ob_get_clean(); break; } Display::display_header($nameTools, 'Links'); /* Introduction section */ Display::display_introduction_section(TOOL_LINK); echo $content; Display::display_footer();