Reputation: 422
How do i check if a user is logged in in Joomla 2.5? I can only seem to find code snippets for the older versions of joomla. Is it the same?
Upvotes: 5
Views: 11906
Reputation: 7059
Yes it same as before try this-
$user =& JFactory::getUser();
if($user->id!=0){
//user is logged in
}
Upvotes: 3