diff options
Diffstat (limited to 'modules/toolbar/toolbar.tpl.php')
-rw-r--r-- | modules/toolbar/toolbar.tpl.php | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/modules/toolbar/toolbar.tpl.php b/modules/toolbar/toolbar.tpl.php new file mode 100644 index 000000000..f36273f50 --- /dev/null +++ b/modules/toolbar/toolbar.tpl.php @@ -0,0 +1,29 @@ +<?php +// $Id$ + +/** + * @file + * Default template for admin toolbar. + * + * Available variables: + * - $toolbar['toolbar_user']: User account / logout links. + * - $toolbar['toolbar_menu']: Top level management menu links. + * - $toolbar['toolbar_shortcuts']: Convenience shortcuts. + * + * @see template_preprocess() + * @see template_preprocess_admin_toolbar() + */ +?> +<div id="toolbar" class="clearfix"> + <div class="toolbar-menu clearfix"> + <span class="toggle toggle-active"><?php print t('Show shortcuts'); ?></span> + <?php print render($toolbar['toolbar_user']); ?> + <?php print render($toolbar['toolbar_menu']); ?> + </div> + + <div class="toolbar-shortcuts clearfix"> + <?php print render($toolbar['toolbar_shortcuts']); ?> + </div> + + <div class="shadow"></div> +</div> |