API15

JLanguage/getLanguagePath

From Joomla! Documentation

< API15:JLanguage
Revision as of 17:23, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Get the path to a language <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</no...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The "API15" 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

[Edit Descripton]

Template:Description:JLanguage/getLanguagePath

Syntax[edit]

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]

function getLanguagePath($basePath = JPATH_BASE, $language = null )
{
        $dir = $basePath.DS.'language';
        if (!empty($language)) {
                $dir .= DS.$language;
        }
        return $dir;
}

[Edit See Also] Template:SeeAlso:JLanguage/getLanguagePath

Examples[edit]

<CodeExamplesForm />