API17

Difference between revisions of "JLanguage::load"

From Joomla! Documentation

m (→‎User contributed notes: moving preparation)
m (→‎See also: moving preparation)
Line 55: Line 55:
 
===See also===
 
===See also===
 
* {{JVer|11.1}} '''JLanguage::load source code''' on [[jplatform:language/language.php#cl-614|BitBucket]]
 
* {{JVer|11.1}} '''JLanguage::load source code''' on [[jplatform:language/language.php#cl-614|BitBucket]]
* {{JVer|11.1}} Class [[JLanguage/11.1|JLanguage]]
+
* {{JVer|11.1}} Class [[API17:JLanguage|JLanguage]]
* {{JVer|11.1}} Subpackage [[Subpackage_Language/11.1|Language]]
+
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Language|Language]]
* [[JLanguage::load|Other versions of JLanguage::load]]
+
* [[API17:JLanguage::load|Other versions of JLanguage::load]]
 
{{SeeAlso:JLanguage::load}}
 
{{SeeAlso:JLanguage::load}}
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">

Revision as of 21:07, 11 May 2013

The "API17" 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.

Joomla 11.1 JLanguage::load[edit]

Description[edit]

Loads a single language file and appends the results to the existing strings.

Template:Description:JLanguage::load [Edit Descripton]

public function load (
        $extension= 'joomla'
        $basePath=JPATH_BASE
        $lang=null
        $reload=false
        $default=true
)
Parameter Type Default Description
$extension string 'joomla' The extension for which a language file should be loaded
$basePath string JPATH_BASE The basepath to use
$lang string null The language to load, default null for the current language
$reload boolean false Flag that will force a language to be reloaded if set to true
$default boolean true Flag that force the default language to be loaded if the current does not exist
  • Returns boolean True, if the file has successfully loaded.
  • Defined on line 622 of libraries/joomla/language/language.php
  • Since Joomla 11.1

See also[edit]

Template:SeeAlso:JLanguage::load [Edit See Also]

User contributed notes[edit]

<CodeExamplesForm />