添加仅限管理员的功能



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

如果我添加if($user_is_admin==true)死亡

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

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

相关内容

  • 没有找到相关文章

最新更新