API16:JFactory/getLanguage
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
Get a language object
Description:JFactory/getLanguage
Syntax
static getLanguage()
Returns
object
Defined in
libraries/joomla/factory.php
Importing
jimport( 'joomla.factory' );
Source Body
public static function getLanguage() { if (!is_object(JFactory::$language)) { //get the debug configuration setting $conf = &JFactory::getConfig(); $debug = $conf->getValue('config.debug_lang'); JFactory::$language = JFactory::_createLanguage(); JFactory::$language->setDebug($debug); } return JFactory::$language; }
[Edit See Also] SeeAlso:JFactory/getLanguage
Examples
<CodeExamplesForm />
