API15:JUtility/getToken
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Method to determine a hash for anti-spoofing variable names
Syntax
getToken($forceNew=false)
| Parameter Name | Default Value | Description |
|---|---|---|
| $forceNew | false |
Returns
string Hashed var name
Defined in
libraries/joomla/utilities/utility.php
Importing
jimport( 'joomla.utilities.utility' );
Source Body
function getToken($forceNew = false) { $user = &JFactory::getUser(); $session = &JFactory::getSession(); $hash = JUtility::getHash( $user->get( 'id', 0 ).$session->getToken( $forceNew ) ); return $hash; }
[Edit See Also] SeeAlso:JUtility/getToken
Examples
<CodeExamplesForm />
