Modifications made for PHP4 compatibility.

This commit is contained in:
vinkmar
2006-08-19 01:40:54 +00:00
parent 0155cf991d
commit ccad2d8e7d
3 changed files with 10 additions and 8 deletions
@@ -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 {
}
}
?>
?>
+3 -3
View File
@@ -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);
+2 -2
View File
@@ -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);