API16

API16:JHtmlForm/token

From Joomla! Documentation

Revision as of 22:51, 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)

Description

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

[Edit Descripton]

Template:Description:JHtmlForm/token

Syntax

static token()


Returns

void

Defined in

libraries/joomla/html/html/form.php

Importing

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

Source Body

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

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

Examples

<CodeExamplesForm />