1

我正在制作一个http://mybb.com插件,到目前为止一切都很好,除了一个问题。我正在尝试添加谁可以查看公告的功能(是的,它是一个公告插件)。

如果我添加 if($user_is_admin==true) die; 如何在代码中添加它

所要做的就是杀死整个软件而不是插件本身。

4

1 回答 1

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
于 2013-09-25T13:00:29.733 回答