API16:JLanguage/
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
Translate function, mimics the php gettext (alias _) function
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
_($string, $jsSafe=false)
| Parameter Name | Default Value | Description |
|---|---|---|
| $string | $string The string to translate | |
| $jsSafe | false | $jsSafe Make the result javascript safe |
Returns
string The translation of the string
Defined in
libraries/joomla/language/language.php
Importing
jimport( 'joomla.language.language' );
Source Body
public function _($string, $jsSafe = false) { $key = strtoupper($string); if (isset ($this->_strings[$key])) { $string = $this->_debug ? '**'.$this->_strings[$key].'**' : $this->_strings[$key]; // Store debug information if ($this->_debug) { $caller = $this->_getCallerInfo(); if (! array_key_exists($key, $this->_used)) { $this->_used[$key] = array(); } $this->_used[$key][] = $caller; } } else { if ($this->_debug) { $caller = $this->_getCallerInfo(); $caller['string'] = $string; if (! array_key_exists($key, $this->_orphans)) { $this->_orphans[$key] = array(); } $this->_orphans[$key][] = $caller; $string = '??'.$string.'??'; } } if ($jsSafe) { $string = addslashes($string); } return $string; }
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />
