API16

JLanguage/getKnownLanguages

From Joomla! Documentation

< API16:JLanguage
Revision as of 17:49, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Returns a list of known languages for an area <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JLanguage/getKnownLanguages|Edit Desc...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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]

Returns a list of known languages for an area

[Edit Descripton]

Template:Description:JLanguage/getKnownLanguages

Syntax[edit]

static getKnownLanguages($basePath=JPATH_BASE)
Parameter Name Default Value Description
$basePath JPATH_BASE $basePath The basepath to use

Returns[edit]

array key/value pair with the language file and real name

Defined in[edit]

libraries/joomla/language/language.php

Importing[edit]

jimport( 'joomla.language.language' );

Source Body[edit]

public static function getKnownLanguages($basePath = JPATH_BASE)
{
        $dir = self::getLanguagePath($basePath);
        $knownLanguages = self::_parseLanguageFiles($dir);

        return $knownLanguages;
}

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

Examples[edit]

<CodeExamplesForm />