API16:JApplication/getHash
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
Provides a secure hash based on a seed
Description:JApplication/getHash
Syntax
static getHash($seed)
| Parameter Name | Default Value | Description |
|---|---|---|
| $seed | Seed string |
Returns
string
Defined in
libraries/joomla/application/application.php
Importing
jimport( 'joomla.application.application' );
Source Body
public static function getHash($seed) { $conf = &JFactory::getConfig(); return md5($conf->getValue('config.secret') . $seed ); }
[Edit See Also] SeeAlso:JApplication/getHash
Examples
<CodeExamplesForm />
