From 5f95212d11555694d279145a1f6f5164b823c7a1 Mon Sep 17 00:00:00 2001 From: Steven Wittens <steven@10.no-reply.drupal.org> Date: Fri, 5 Jan 2001 12:09:46 +0000 Subject: [PATCH] Added a dynamic "administrate" link to the account box. --- includes/theme.inc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/includes/theme.inc b/includes/theme.inc index e8b69c1d6e67..6aae3d6e66ff 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -27,6 +27,11 @@ function menu($name, $module) { $content .= "<LI><A HREF=\"account.php?op=edit&topic=user\">edit your information</A></LI>\n"; $content .= "<LI><A HREF=\"account.php?op=edit&topic=site\">edit your preferences</A></LI>\n"; $content .= "<LI><A HREF=\"account.php?op=edit&topic=content\">edit site content</A></LI>\n"; + if (($user->id) && ($user->permissions == 1 || $user->id == 1)) { + $content .= "<P>\n"; + $content .= "<LI><A HREF=\"admin.php\">administrate " . $site_name . "</A></LI>\n"; + } + $content .= " $content .= "<P>\n"; if (ksort($menu)) { foreach ($menu as $link=>$url) $content .= "<LI><A HREF=\"$url\">$link</A></LI>\n"; -- GitLab