API15

JUtility/getToken

From Joomla! Documentation

< API15:JUtility
Revision as of 17:26, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Method to determine a hash for anti-spoofing variable names <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JUtility/getToken|Edit ...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

The "API15" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Method to determine a hash for anti-spoofing variable names

[Edit Descripton]

Template:Description:JUtility/getToken

Syntax[edit]

getToken($forceNew=false)
Parameter Name Default Value Description
$forceNew false

Returns[edit]

string Hashed var name

Defined in[edit]

libraries/joomla/utilities/utility.php

Importing[edit]

jimport( 'joomla.utilities.utility' );

Source Body[edit]

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] Template:SeeAlso:JUtility/getToken

Examples[edit]

<CodeExamplesForm />