我正在制作一个http://mybb.com插件,到目前为止一切都很顺利,除了一个问题。我正在尝试添加谁可以查看公告的功能(是的,它是一个公告插件)。
如果我添加,如何在代码中添加它 如果($ user_is_admin ==真) 死;
所有这一切都将杀死整个软件而不是插件本身。
答案 0 :(得分:1)
if ($mybb->user['usergroup'] == "4")
{
// User is admin
}
else
{
// User is not admin
}
如果您的插件从链接页面获取任何请求,则需要对页面处理程序进行检查:
if ($mybb->user['usergroup'] == "4")
{
// User is admin
// Handle request here
}
// Don't handle request here; non-admins can get here even if they can't see the link/button that gets here