JPlugin/loadLanguage
From Joomla! Documentation
< API16:JPlugin
The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.
Description[edit]
Loads the plugin language file
Syntax[edit]
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[edit]
boolean True, if the file has successfully loaded.
Defined in[edit]
libraries/joomla/plugin/plugin.php
Importing[edit]
jimport( 'joomla.plugin.plugin' );
Source Body[edit]
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);
}
Examples[edit]
Code Examples[edit]