Чтобы подружить эти 2 модуля - включайте:
- Administration menu
- Administration menu Toolbar style
- Toolbar
Создавайте свой модуль и в нём пропишите следующий хук:
function mymodule_theme_registry_alter(&$theme_registry) {
$theme_registry['toolbar']['path'] = $theme_registry['toolbar']['theme path'] = drupal_get_path('module', 'mymodule');
}
Затем в папку модуля положите файл с именем toolbar.tpl.php и содержимым:
<div id="toolbar" class="<?php print $classes; ?> clearfix">
<div class="<?php echo $toolbar['toolbar_drawer_classes']; ?>">
<?php print render($toolbar['toolbar_drawer']); ?>
</?php></div>
</div>
Теперь меню не "задвоится".