API16:JPlugin/loadLanguage
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
Loads the plugin language file
Description:JPlugin/loadLanguage
Syntax
loadLanguage($extension= '', $basePath=JPATH_ADMINISTRATOR)
| Parameter Name | Default Value | Description |
|---|---|---|
| $extension | $extension The extension for which a language file should be loaded | |
| $basePath | JPATH_ADMINISTRATOR | $basePath The basepath to use |
Returns
boolean True, if the file has successfully loaded.
Defined in
libraries/joomla/plugin/plugin.php
Importing
jimport( 'joomla.plugin.plugin' );
Source Body
public function loadLanguage($extension = '', $basePath = JPATH_ADMINISTRATOR) { if (empty($extension)) { $extension = 'plg_'.$this->_type.'_'.$this->_name; } $lang = &JFactory::getLanguage(); return $lang->load(strtolower($extension), $basePath, null, false, false) || $lang->load (strtolower($extension), JPATH_PLUGINS .DS.$this->_type.DS.$this->_name, null, false, false) || $lang->load(strtolower($extension), $basePath, $lang->getDefault(), false, false) || $lang->load (strtolower($extension), JPATH_PLUGINS .DS.$this->_type.DS.$this->_name, $lang->getDefault(), false, false); }
[Edit See Also] SeeAlso:JPlugin/loadLanguage
Examples
<CodeExamplesForm />
