API16:JText/
From Joomla! Documentation
Description
Translates a string into the current language.
Syntax
static _($string, $jsSafe=false)
Parameter Name | Default Value | Description |
---|---|---|
$string | $string The string to translate. | |
$jsSafe | false | $jsSafe Make the result javascript safe. |
Defined in
libraries/joomla/methods.php
Importing
jimport( 'joomla.methods' );
Source Body
public static function _($string, $jsSafe = false)
{
$lang = &JFactory::getLanguage();
return $lang->_($string, $jsSafe);
}
[Edit See Also] Template:SeeAlso:JText/
Examples
<CodeExamplesForm />