API15:JLanguage/getLanguagePath
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 the path to a language
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
getLanguagePath($basePath=JPATH_BASE, $language=null)
| Parameter Name | Default Value | Description |
|---|---|---|
| $basePath | JPATH_BASE | $basePath The basepath to use |
| $language | null | $language The language tag |
Returns
string language related path or null
Defined in
libraries/joomla/language/language.php
Importing
jimport( 'joomla.language.language' );
Source Body
function getLanguagePath($basePath = JPATH_BASE, $language = null ) { $dir = $basePath.DS.'language'; if (!empty($language)) { $dir .= DS.$language; } return $dir; }
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />
