-
-
Save buluma/a46e02ad92c7c7e50ca9f50f125fe57b to your computer and use it in GitHub Desktop.
Logout link for Joomla 1.5, 2.5 and 3.0
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Joomla 1.5 Logout Link | |
<?php | |
$returnURL = base64_encode(JURI::root() . ""); | |
$user =& JFactory::getUser(); | |
echo 'Hi,'.$user->username; | |
?> | |
<a href="index.php?option=com_user&task=logout&return=<?php echo $returnURL; ?>"> | |
<input type="button" name="Submit" class="button" value="Logout"></a> | |
Joomla 2.5 Logout Link | |
<a href="index.php?option=com_users&task=user.logout&<?php echo JUtility::getToken(); ?>=1"> | |
<input type="button" name="Submit" class="button" value="Logout"> | |
</a> | |
Joomla 3.1 Logout Link | |
//JUtility::getToken() has been removed in Joomla 3.0. Use JSession::getFormToken() instead. | |
<a href="index.php?option=com_users&task=user.logout&<?php echo JSession::getFormToken(); ?>=1"> | |
<input type="button" name="Submit" class="button" value="Logout"> | |
</a> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment