Skip to content

Instantly share code, notes, and snippets.

@qwersk
Created August 4, 2017 10:41
Show Gist options
  • Save qwersk/ecf62faf81d97b25868a4266cc294d0c to your computer and use it in GitHub Desktop.
Save qwersk/ecf62faf81d97b25868a4266cc294d0c to your computer and use it in GitHub Desktop.
Check if user is admin #joomla
$user = JFactory::getUser();
$isroot = $user->authorise('core.admin');
if($isroot){
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment