在个人资料中添加选项卡
如何将选项卡添加到我的个人资料 (/users/my-name) 中? 我使用了这个功能,但没有显示任何内容:
function tpzclassified_menu() {
$items['user/%user/kleinanzeigen'] = array(
'title' => t('Meine Kleinanzeigen'),
'page arguments' => array(1),
'access callback' => TRUE,
'type' => MENU_LOCAL_TASK,
);
return $items;
}
How can I add a tab into my personal profile (/users/my-name)?
I used this function, but nothuing shows up:
function tpzclassified_menu() {
$items['user/%user/kleinanzeigen'] = array(
'title' => t('Meine Kleinanzeigen'),
'page arguments' => array(1),
'access callback' => TRUE,
'type' => MENU_LOCAL_TASK,
);
return $items;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您缺少
页面回调
属性:将
tpzclassified_kleinanzeigen
替换为生成页面的函数名称。另外,切勿使用
'access callback' =>正确:这是一个巨大的安全漏洞。我已将其更改为使用
user_view_access()
,它会检查是否允许用户查看%user
的个人资料。如果您想检查是否允许用户编辑%user
的个人资料,您可以使用user_edit_access()
。You're missing the
page callback
property:Replace
tpzclassified_kleinanzeigen
with the function name that generates the page.Also, never use
'access callback' => TRUE
: it's a huge security hole. I've changed that to useuser_view_access()
, which checks to the see if the user is allowed to view%user
's profile. You could useuser_edit_access()
if you wanted to check to see if a user is allowed to edit%user
's profile.