Skip to content

Instantly share code, notes, and snippets.

@victor-falcon
Created March 7, 2012 14:47
Show Gist options
  • Save victor-falcon/1993590 to your computer and use it in GitHub Desktop.
Save victor-falcon/1993590 to your computer and use it in GitHub Desktop.
[Joomla] Access to Current User Object
<?php
/*
* More at
* http://docs.joomla.org/Accessing_the_current_user_object
*/
$user =& JFactory::getUser();
if ($user->guest) {
// Guest
echo "You'r a guest";
} else {
// User
echo "Hi {$user->name}";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment