Sean Lang
Sean Lang

Reputation: 422

Joomla 2.5 check user logged in

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

Answers (3)

Elin
Elin

Reputation: 6755

$user = JFactory::getUser()->guest;

If you are on PHP 5.3.

Upvotes: 2

Techie
Techie

Reputation: 45124

if(JFactory::getUser()->id)
{
//user has logged in
}

Upvotes: 18

Irfan
Irfan

Reputation: 7059

Yes it same as before try this-

$user =& JFactory::getUser();
if($user->id!=0){
//user is logged in
}

Upvotes: 3

Related Questions