<?php
/**
* Alter the admin menu to show main menu links there also (for admin pages).
*/
function example_admin_menu_output_alter(&$content) {
// Retrieve the Main menu link tree.
$tree = menu_build_tree('main-menu');
$links = admin_menu_links_menu($tree);
if (!empty($links)) {
// Fake out a top-level main menu link.
$links['#title'] = t('Main menu');
$links['#href'] = '<front>';
$links['#options'] = array(
'alias' => true,
);
$links['#weight'] = 100;
debug($links);
$content['menu']['main_menu'] = $links;
}
}
?>