API16

JLanguage/getPaths

From Joomla! Documentation

< API16:JLanguage
Revision as of 17:49, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Get a list of language files that have been loaded <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JLanguage/getPaths|Edit Descript...)
(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]

Get a list of language files that have been loaded

[Edit Descripton]

Template:Description:JLanguage/getPaths

Syntax[edit]

getPaths($extension=null)
Parameter Name Default Value Description
$extension null $extension An option extension name

Returns[edit]

array

Defined in[edit]

libraries/joomla/language/language.php

Importing[edit]

jimport( 'joomla.language.language' );

Source Body[edit]

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] Template:SeeAlso:JLanguage/getPaths

Examples[edit]

<CodeExamplesForm />