Modifications made for PHP4 compatibility.
This commit is contained in:
@@ -38,9 +38,9 @@ class block_admin_bookmarks extends block_base {
|
||||
// (recall that $ADMIN->locate is a huge recursive call... and we're calling it repeatedly here
|
||||
foreach($bookmarks as $bookmark) {
|
||||
$temp = $ADMIN->locate($bookmark);
|
||||
if ($temp instanceof admin_settingpage) {
|
||||
if (is_a($temp, 'admin_settingpage')) {
|
||||
$this->content->text .= '<a href="' . $CFG->wwwroot . '/admin/settings.php?section=' . $bookmark . '">' . $temp->visiblename . '</a>' . '<br />';
|
||||
} elseif ($temp instanceof admin_externalpage) {
|
||||
} elseif (is_a($temp, 'admin_externalpage')) {
|
||||
$this->content->text .= '<a href="' . $temp->url . '">' . $temp->visiblename . '</a>' . '<br />';
|
||||
}
|
||||
}
|
||||
@@ -52,6 +52,8 @@ class block_admin_bookmarks extends block_base {
|
||||
$this->content->footer = '<a href="' . $CFG->wwwroot . '/blocks/admin_bookmarks/delete.php?section=' . $section . '&returnurl=' . $CFG->wwwroot . '">unbookmark this page</a>';
|
||||
} elseif ($section = optional_param('section','',PARAM_ALPHAEXT)) {
|
||||
$this->content->footer = '<a href="' . $CFG->wwwroot . '/blocks/admin_bookmarks/create.php?section=' . $section . '">bookmark this page</a>';
|
||||
} else {
|
||||
$this->content->footer = '';
|
||||
}
|
||||
|
||||
return $this->content;
|
||||
@@ -59,4 +61,4 @@ class block_admin_bookmarks extends block_base {
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
?>
|
||||
@@ -20,7 +20,7 @@ if ($section = optional_param('section', '', PARAM_ALPHAEXT)) {
|
||||
|
||||
$temp = $ADMIN->locate($section);
|
||||
|
||||
if ($temp instanceof admin_settingpage || $temp instanceof admin_externalpage) {
|
||||
if (is_a($temp, 'admin_settingpage') || is_a($temp, 'admin_externalpage')) {
|
||||
|
||||
$bookmarks[] = $section;
|
||||
|
||||
@@ -35,11 +35,11 @@ if ($section = optional_param('section', '', PARAM_ALPHAEXT)) {
|
||||
|
||||
}
|
||||
|
||||
if ($temp instanceof admin_settingpage) {
|
||||
if (is_a($temp, 'admin_settingpage')) {
|
||||
|
||||
redirect("$CFG->wwwroot/admin/settings.php?section=" . $section, 'Bookmark added.',1);
|
||||
|
||||
} elseif ($temp instanceof admin_externalpage) {
|
||||
} elseif (is_a($temp, 'admin_externalpage')) {
|
||||
|
||||
redirect($temp->url, 'Bookmark added.', 1);
|
||||
|
||||
|
||||
@@ -23,9 +23,9 @@ if ($section = optional_param('section', '', PARAM_ALPHAEXT)) {
|
||||
|
||||
$temp = $ADMIN->locate($section);
|
||||
|
||||
if ($temp instanceof admin_externalpage) {
|
||||
if (is_a($temp, 'admin_externalpage')) {
|
||||
redirect($temp->url, 'Bookmark deleted.',1);
|
||||
} elseif ($temp instanceof admin_settingpage) {
|
||||
} elseif (is_a($temp, 'admin_settingpage')) {
|
||||
redirect($CFG->wwwroot . '/admin/settings.php?section=' . $section, 'Bookmark deleted.',1);
|
||||
} else {
|
||||
redirect($CFG->wwwroot, 'Bookmark deleted.',1);
|
||||
|
||||
Reference in New Issue
Block a user