API15:JText/
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
Translates a string into the current language
Syntax
_($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
function _($string, $jsSafe = false) { $lang =& JFactory::getLanguage(); return $lang->_($string, $jsSafe); }
[Edit See Also] SeeAlso:JText/
Examples
<CodeExamplesForm />
