JHtmlForm/token
From Joomla! Documentation
< API16:JHtmlForm
The "API16" 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.
Contents
Description
Displays a hidden token field to reduce the risk of CSRF exploits
<! removed transcluded page call, red link never existed >
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" />';
}
<! removed transcluded page call, red link never existed >