login | register
Sun 12 of Oct, 2008 (12:46 UTC)

bitweaver - Web Application Framework and CMS

Web Application Framework and CMS

Refresh cache

How do I check if the current user has a permission?

by Stephan Borg
Friday 01 of July, 2005
Posted to Developer's FAQ
if ($gBitUser->hasPermission('bit_p_admin_cms')) {
    This user has permission!
}


NOTE: if you want to exit and display an error message if they don't have permission, then:
$gBitSystem->verifyPermission( 'bit_p_view' );

This displays a standard "You do not have permission!" error message.

Comments