gpt4 book ai didi

drupal hook_menu_alter() 用于添加标签

转载 作者:行者123 更新时间:2023-12-01 09:38:59 25 4
gpt4 key购买 nike

我想在名为“cssswitch”的模块的“node/%/edit”页面中添加一些选项卡。当我单击“重建菜单”时,会显示两个新选项卡,但在编辑它们时会为所有节点显示它们,而不仅仅是节点“cssswitch”。我希望这些新标签仅在编辑“cssswitch”类型的节点时显示。

另一个问题是当我清除所有缓存时,选项卡会从所有编辑页面中完全消失。下面是我写的代码。

    function cssswitch_menu_alter(&$items) {

$node = menu_get_object();
//print_r($node);
//echo $node->type; //exit();
if ($node->type == 'cssswitch') {

$items['node/%/edit/schedulenew'] = array(
'title' => 'Schedule1',
'access callback'=>'user_access',
'access arguments'=>array('view cssswitch'),
'page callback' => 'cssswitch_schedule',
'page arguments' => array(1),
'type' => MENU_LOCAL_TASK,
'weight'=>4,
);

$items['node/%/edit/schedulenew2'] = array(
'title' => 'Schedule2',
'access callback'=>'user_access',
'access arguments'=>array('view cssswitch'),
'page callback' => 'cssswitch_test2',
'page arguments' => array(1),
'type' => MENU_LOCAL_TASK,
'weight'=>3,
);


}

}

function cssswitch_test(){
return 'test';
}

function cssswitch_test2(){
return 'test2';
}

感谢您的帮助。

最佳答案

hook_menu_alter() 仅在菜单构建过程中调用,因此您不能在该函数中进行动态节点类型检查。

但是,要实现您想要的,您可以使用自定义访问回调来执行此操作,如下所示:

       // Note, I replaced the '%' in your original code with '%node'. See hook_menu() for details on this.
$items['node/%node/edit/schedulenew2'] = array(
...
'access callback'=>'cssswitch_schedulenew_access',
// This passes in the $node object as the argument.
'access arguments'=>array(1),
...
);

然后,在您的新自定义访问回调中:

function cssswitch_schedulenew_access($node) {
// Check that node is the proper type, and that the user has the proper permission.
return $node->type == 'cssswitch' && user_access('view cssswitch');
}

对于其他节点类型,此函数将返回false,从而拒绝访问,从而移除选项卡。

关于drupal hook_menu_alter() 用于添加标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2876855/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com