API16:JLanguage/getPaths
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 list of language files that have been loaded
Description:JLanguage/getPaths
Syntax
getPaths($extension=null)
| Parameter Name | Default Value | Description |
|---|---|---|
| $extension | null | $extension An option extension name |
Returns
array
Defined in
libraries/joomla/language/language.php
Importing
jimport( 'joomla.language.language' );
Source Body
public function getPaths($extension = null) { if (isset($extension)) { if (isset($this->_paths[$extension])) { return $this->_paths[$extension]; } return null; } else { return $this->_paths; } }
[Edit See Also] SeeAlso:JLanguage/getPaths
Examples
<CodeExamplesForm />
