diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-08-22 19:58:28 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-08-22 19:58:28 +0000 |
commit | a2694498f141f24ba4860f73a2c3ec238f65eab0 (patch) | |
tree | e0b63f70d10fc492ad02a40666a350e7bd184813 /modules/system | |
parent | d71ffc5aba6ee0e40ded64906b3bc430b7428e4f (diff) | |
download | brdo-a2694498f141f24ba4860f73a2c3ec238f65eab0.tar.gz brdo-a2694498f141f24ba4860f73a2c3ec238f65eab0.tar.bz2 |
#542658 by Gábor Hojtsy, sun, pwolanin: Move action 'tabs' out of local tasks.
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/page.tpl.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/system/page.tpl.php b/modules/system/page.tpl.php index 39127200e..eb449a619 100644 --- a/modules/system/page.tpl.php +++ b/modules/system/page.tpl.php @@ -68,6 +68,8 @@ * - $secondary_menu (array): An array containing the Secondary menu links for * the site, if they have been configured. * - $breadcrumb: The breadcrumb trail for the current page. + * - $action_links: Actions local to the page, such as 'Add menu' on the menu + * administration interface. * * Page content (in order of occurrence in the default page.tpl.php): * - $title: The page title, for use in the actual HTML content. @@ -171,6 +173,7 @@ <?php if ($title): ?><h1 class="title" id="page-title"><?php print $title; ?></h1><?php endif; ?> <?php if ($tabs): ?><div class="tabs"><?php print $tabs; ?></div><?php endif; ?> <?php print $help; ?> + <?php if ($action_links): ?><ul class="action-links"><?php print $action_links; ?></ul><?php endif; ?> <div id="content-area" class="region"> <?php print $content; ?> </div> <!-- /#content-area --> |