mirror of
https://github.com/moodle/moodle.git
synced 2025-02-21 01:48:45 +01:00
50 lines
1.2 KiB
PHP
50 lines
1.2 KiB
PHP
<?php
|
|
|
|
require('../../config.php');
|
|
|
|
require_once($CFG->libdir.'/adminlib.php');
|
|
|
|
require_login();
|
|
$adminroot = admin_get_root(false, false); // settings not required - only pages
|
|
|
|
if ($section = optional_param('section', '', PARAM_SAFEDIR) and confirm_sesskey()) {
|
|
|
|
if (get_user_preferences('admin_bookmarks')) {
|
|
|
|
$bookmarks = explode(',', get_user_preferences('admin_bookmarks'));
|
|
|
|
$key = array_search($section, $bookmarks);
|
|
|
|
if ($key === false) {
|
|
print_error('nonexistentbookmark','admin');
|
|
die;
|
|
}
|
|
|
|
unset($bookmarks[$key]);
|
|
$bookmarks = implode(',', $bookmarks);
|
|
set_user_preference('admin_bookmarks', $bookmarks);
|
|
|
|
$temp = $adminroot->locate($section);
|
|
|
|
if ($temp instanceof admin_externalpage) {
|
|
redirect($temp->url, get_string('bookmarkdeleted','admin'));
|
|
} elseif ($temp instanceof admin_settingpage) {
|
|
redirect($CFG->wwwroot . '/' . $CFG->admin . '/settings.php?section=' . $section);
|
|
} else {
|
|
redirect($CFG->wwwroot);
|
|
}
|
|
die;
|
|
|
|
|
|
}
|
|
|
|
print_error('nobookmarksforuser','admin');
|
|
die;
|
|
|
|
} else {
|
|
print_error('invalidsection', 'admin');
|
|
die;
|
|
}
|
|
|
|
|