Talk

Difference between revisions of "Auto redirect guests to login"

From Joomla! Documentation

 
(No difference)

Latest revision as of 02:33, 15 April 2009

I'm developing a component that I want to be visible to all but force the user to log in before using it. I am using the following code in the default php file that my component runs upon loading.

$user = & JFactory::getUser();

 if ($user->guest)
 {
   $forceLoginController = new JController;
   $forceLoginController->setRedirect('index.php?option=com_user&view=login');
   $forceLoginController->redirect();
 }

I'm pretty much a Joomla! noob, but I don't see any reason why this shouldn't be used.