API15

JHTMLForm/token

From Joomla! Documentation

< API15:JHTMLForm
Revision as of 17:21, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Displays a hidden token field to reduce the risk of CSRF exploits <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JHTMLForm/token|E...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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]

Displays a hidden token field to reduce the risk of CSRF exploits

[Edit Descripton]

Template:Description:JHTMLForm/token

Syntax[edit]

token()


Returns[edit]

void

Defined in[edit]

libraries/joomla/html/html/form.php

Importing[edit]

jimport( 'joomla.html.html.form' );

Source Body[edit]

function token()
{
        return '<input type="hidden" name="'.JUtility::getToken().'" value="1" />';
}

[Edit See Also] Template:SeeAlso:JHTMLForm/token

Examples[edit]

<CodeExamplesForm />