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?
if(JFactory::getUser()->id)
{
//user has logged in
}
Yes it same as before try this-
$user =& JFactory::getUser();
if($user->id!=0){
//user is logged in
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With