API15:JLanguage/hasKey
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
Determines is a key exists
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
hasKey($key)
| Parameter Name | Default Value | Description |
|---|---|---|
| $key | $key The key to check |
Returns
boolean True, if the key exists
Defined in
libraries/joomla/language/language.php
Importing
jimport( 'joomla.language.language' );
Source Body
function hasKey($key) { return isset ($this->_strings[strtoupper($key)]); }
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />
