我正在为我的公司构建一个相当复杂的模块,其中包含许多不同的配置页面。我希望在顶部的管理栏中有一个菜单项,其中包含所有子菜单项。我知道如何通过 UI 将单个项目添加到该菜单,但是会有足够多的页面我宁愿通过模块本身来完成。那么,如何在我的模块文件的管理菜单中添加带有子菜单的项目以与“仪表板”、“内容”、“结构”等并排放置。我认为它必须在 hook_menu() 中,但我无法弄清楚。
问问题
9684 次
1 回答
12
这可以通过在您的实现中添加'page callback'
ofsystem_admin_menu_block_page
来hook_menu
实现:
因此,假设您要创建如下结构:
- 自定义主菜单(将出现在工具栏上,除了Structure,Modules等其他项目)
- 子菜单项 1
- 子菜单项 2
钩子实现将类似于:
function MODULE_menu() {
$items['admin/main'] = array(
'title' => 'Custom main menu',
'description' => 'Main menu item which should appear on the toolbar',
'position' => 'left',
'weight' => -100, // Less weight so that it will appear to the extreme left, before dashboard.
'page callback' => 'system_admin_menu_block_page',
'access arguments' => array('administer site configuration'),
'file' => 'system.admin.inc',
'file path' => drupal_get_path('module', 'system'),
);
$items['admin/main/sub-menu-1'] = array(
'title' => 'Sub menu item 1',
'description' => 'Child of the menu appearing in toolbar.',
'page callback' => 'drupal_get_form',
'page arguments' => array('custom_form'),
'access arguments' => array('custom permission'),
'type' => MENU_NORMAL_ITEM,
);
$items['admin/main/sub-menu-2'] = array(
'title' => 'Sub menu item 2',
'description' => 'Child of the menu appearing in toolbar.',
'page callback' => 'custom_page_callback',
'access arguments' => array('custom permission'),
'type' => MENU_NORMAL_ITEM,
);
}
PS - 在启用模块或将此代码添加到 hook_menu 实现之后,您必须刷新缓存,以便 Drupal 选择新的菜单结构。
于 2014-05-20T06:17:25.700 回答