diff options
Diffstat (limited to 'views/default/navigation/topbar_tools.php')
| -rw-r--r-- | views/default/navigation/topbar_tools.php | 42 |
1 files changed, 3 insertions, 39 deletions
diff --git a/views/default/navigation/topbar_tools.php b/views/default/navigation/topbar_tools.php index 897a827d6..307f03fc6 100644 --- a/views/default/navigation/topbar_tools.php +++ b/views/default/navigation/topbar_tools.php @@ -1,45 +1,9 @@ <?php /** - * Elgg standard tools drop down - * This will be populated depending on the plugins active - only plugin navigation will appear here + * Empty view for backward compatibility. * * @package Elgg * @subpackage Core - * @author Curverider Ltd - * @link http://elgg.org/ - * + * + * @deprecated 1.8 Extend the topbar menus or the page/elements/topbar view directly */ - -$menu = get_register('menu'); - -//var_export($menu); - -if (is_array($menu) && sizeof($menu) > 0) { - $alphamenu = array(); - foreach($menu as $item) { - $alphamenu[$item->name] = $item; - } - ksort($alphamenu); - -?> - -<ul class="topbardropdownmenu"> - <li class="drop"><a href="#" class="menuitemtools"><?php echo(elgg_echo('tools')); ?></a> - <ul> - <?php - foreach($alphamenu as $item) { - echo "<li><a href=\"{$item->value}\">" . $item->name . "</a></li>"; - } - ?> - </ul> - </li> -</ul> - -<script type="text/javascript"> -$(function() { - $('ul.topbardropdownmenu').elgg_topbardropdownmenu(); -}); -</script> - -<?php -}
\ No newline at end of file |
