MyBB Community Forums

Full Version: Check if logged in?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm creating my own sidebar inside my Index template, how can I check if users are logged in and how can I check if they're admins or moderators?
Note that you can't put these directly in templates, but it is the PHP codes you will need.

if($mybb->user['uid'])
{
// member
}

if($mybb->usergroup['canmodcp'])
{
// moderator
}

if($mybb->usergroup['cancp'])
{
// admin
}
And if you want it directly in templates, just download Template Conditionals plugin: http://mybbhacks.zingaburga.com/showthread.php?tid=464 and after activating it add this code to the index template:
<if $mybb->user['uid'] then>
Show text/HTML/CSS/variables/whatever for users logged in.
</if>
<if $mybb->usergroup['cancp'] || $mybb->usergroup['canmodcp'] then>
Show text/HTML/CSS/variables/whatever for users with ACP/MCP access.
</if>