API17

Difference between revisions of "JInstallerLanguage"

From Joomla! Documentation

m (→‎User contributed notes: moving preparation)
m (moving preparation)
Line 14: Line 14:
 
|-
 
|-
 
|public  
 
|public  
|[[JInstallerLanguage::discover/11.1|discover]]
+
|[[API17:JInstallerLanguage::discover|discover]]
 
|Custom discover method Finds language files.  
 
|Custom discover method Finds language files.  
 
|-
 
|-
 
|public  
 
|public  
|[[JInstallerLanguage::discover_install/11.1|discover_install]]
+
|[[API17:JInstallerLanguage::discover_install|discover_install]]
 
|Custom discover install method Basically updates the manifest cache and leaves everything alone.  
 
|Custom discover install method Basically updates the manifest cache and leaves everything alone.  
 
|-
 
|-
 
|public  
 
|public  
|[[JInstallerLanguage::install/11.1|install]]
+
|[[API17:JInstallerLanguage::install|install]]
 
|Custom install method Note: This behaves badly due to hacks made in the middle of 1.5.x to add the ability to install multiple distinct packs in one install.  
 
|Custom install method Note: This behaves badly due to hacks made in the middle of 1.5.x to add the ability to install multiple distinct packs in one install.  
 
|-
 
|-
 
|public  
 
|public  
|[[JInstallerLanguage::refreshManifestCache/11.1|refreshManifestCache]]
+
|[[API17:JInstallerLanguage::refreshManifestCache|refreshManifestCache]]
 
|Refreshes the extension table cache.  
 
|Refreshes the extension table cache.  
 
|-
 
|-
 
|public  
 
|public  
|[[JInstallerLanguage::uninstall/11.1|uninstall]]
+
|[[API17:JInstallerLanguage::uninstall|uninstall]]
 
|Custom uninstall method.  
 
|Custom uninstall method.  
 
|-
 
|-
 
|public  
 
|public  
|[[JInstallerLanguage::update/11.1|update]]
+
|[[API17:JInstallerLanguage::update|update]]
 
|Custom update method.  
 
|Custom update method.  
 
|-
 
|-
 
|protected  
 
|protected  
|[[JInstallerLanguage::_install/11.1|_install]]
+
|[[API17:JInstallerLanguage::_install|_install]]
 
|Install function that is designed to handle individual clients.  
 
|Install function that is designed to handle individual clients.  
 
|-
 
|-
 
|}
 
|}
 
* '''Defined in''' libraries/joomla/installer/adapters/language.php
 
* '''Defined in''' libraries/joomla/installer/adapters/language.php
* '''Extends''' [[JAdapterInstance/11.1|JAdapterInstance]]
+
* '''Extends''' [[API17:JAdapterInstance|JAdapterInstance]]
 
===Importing===
 
===Importing===
 
<source lang="php">jimport( 'joomla.installer.adapters.language' );</source>
 
<source lang="php">jimport( 'joomla.installer.adapters.language' );</source>
 
===See also===
 
===See also===
 
* {{JVer|11.1}} '''JInstallerLanguage source code''' on [[jplatform:installer/adapters/language.php|BitBucket]]
 
* {{JVer|11.1}} '''JInstallerLanguage source code''' on [[jplatform:installer/adapters/language.php|BitBucket]]
* {{JVer|11.1}} Subpackage [[Subpackage Installer/11.1|Installer]]
+
* {{JVer|11.1}} Subpackage [[API17:Subpackage Installer|Installer]]
* [[JInstallerLanguage|Other versions of JInstallerLanguage]]
+
* [[API17:JInstallerLanguage|Other versions of JInstallerLanguage]]
 
{{SeeAlso:JInstallerLanguage}}
 
{{SeeAlso:JInstallerLanguage}}
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">

Revision as of 21:01, 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 JInstallerLanguage[edit]

Description[edit]

Template:Description:JInstallerLanguage [Edit Descripton]

Methods[edit]

Visibility Method name Description
public discover Custom discover method Finds language files.
public discover_install Custom discover install method Basically updates the manifest cache and leaves everything alone.
public install Custom install method Note: This behaves badly due to hacks made in the middle of 1.5.x to add the ability to install multiple distinct packs in one install.
public refreshManifestCache Refreshes the extension table cache.
public uninstall Custom uninstall method.
public update Custom update method.
protected _install Install function that is designed to handle individual clients.
  • Defined in libraries/joomla/installer/adapters/language.php
  • Extends JAdapterInstance

Importing[edit]

jimport( 'joomla.installer.adapters.language' );

See also[edit]

Template:SeeAlso:JInstallerLanguage [Edit See Also]

User contributed notes[edit]

<CodeExamplesForm />