3

我有一个附加到节点的选项卡;它工作得很好。

我有一个子选项卡,我想将其放在该选项卡下方。它没有出现。

这是我与问题相关的菜单定义:

// Parent tab, attached to nodes.
$items['node/%node/layout'] = array(
'title' => 'Parent tab',
'description' => 'tab that is attached to the node, same level as edit tab',
'page callback' => 'my_callback',
'page arguments' => array(1),
'access callback' => true, // To test.
'type' => MENU_LOCAL_TASK,
'weight' => 200,
'file' => 'mymodule.admin.inc',
);
// Child tab, beneath parent tab.
$items['node/%node/layout/fields'] = array(
'parent' => 'node/%/layout',
'title' => 'child tab',
'description' => 'child tab, underneath parent tab',
'page callback' => 'my_child_callback',
'page arguments' => array(1),
'access callback' => true, // To test.
'type' => MENU_LOCAL_TASK,
'file' => 'mymodule.admin.inc',
);

提前感谢您提供的任何帮助。

4

1 回答 1

1

正如@Clive 在对我的问题的评论中指出的那样: MENU_LOCAL_TASK 至少需要两个项目。

于 2013-03-28T00:20:38.007 回答