API16

Difference between revisions of "JLanguage/getLanguagePath"

From Joomla! Documentation

< API16:JLanguage
(New page: ===Description=== Get the path to a language <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</no...)
 
m (removing red link to edit, no existant pages)
Line 3: Line 3:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JLanguage/getLanguagePath|Edit Descripton]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
  
{{Description:JLanguage/getLanguagePath}}
+
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 47: Line 47:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[SeeAlso:JLanguage/getLanguagePath|Edit See Also]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
{{SeeAlso:JLanguage/getLanguagePath}}
+
<! removed transcluded page call, red link never existed >
  
 
===Examples===
 
===Examples===
Line 62: Line 62:
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API16]]

Revision as of 22:03, 13 May 2013

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]

Get the path to a language

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax[edit]

static 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[edit]

string language related path or null

Defined in[edit]

libraries/joomla/language/language.php

Importing[edit]

jimport( 'joomla.language.language' );

Source Body[edit]

public static 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[edit]

<CodeExamplesForm />