API17

Difference between revisions of "JInstallerLibrary"

From Joomla! Documentation

m (→‎User contributed notes: moving preparation)
m (preparing for archive only)
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
 
=={{JVer|11.1}} JInstallerLibrary==
 
=={{JVer|11.1}} JInstallerLibrary==
 
===Description===
 
===Description===
{{Description:JInstallerLibrary}}
+
 
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[Description:JInstallerLibrary|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
 
===Methods===
 
===Methods===
 
{| class="wikitable sortable"
 
{| class="wikitable sortable"
Line 14: Line 12:
 
|-
 
|-
 
|public  
 
|public  
|[[JInstallerLibrary::discover/11.1|discover]]
+
|[[API17:JInstallerLibrary::discover|discover]]
 
|Custom discover method.  
 
|Custom discover method.  
 
|-
 
|-
 
|public  
 
|public  
|[[JInstallerLibrary::discover_install/11.1|discover_install]]
+
|[[API17:JInstallerLibrary::discover_install|discover_install]]
 
|Custom discover_install method.  
 
|Custom discover_install method.  
 
|-
 
|-
 
|public  
 
|public  
|[[JInstallerLibrary::install/11.1|install]]
+
|[[API17:JInstallerLibrary::install|install]]
 
|Custom install method.  
 
|Custom install method.  
 
|-
 
|-
 
|public  
 
|public  
|[[JInstallerLibrary::loadLanguage/11.1|loadLanguage]]
+
|[[API17:JInstallerLibrary::loadLanguage|loadLanguage]]
 
|Custom loadLanguage method.  
 
|Custom loadLanguage method.  
 
|-
 
|-
 
|public  
 
|public  
|[[JInstallerLibrary::refreshManifestCache/11.1|refreshManifestCache]]
+
|[[API17:JInstallerLibrary::refreshManifestCache|refreshManifestCache]]
 
|Refreshes the extension table cache.  
 
|Refreshes the extension table cache.  
 
|-
 
|-
 
|public  
 
|public  
|[[JInstallerLibrary::uninstall/11.1|uninstall]]
+
|[[API17:JInstallerLibrary::uninstall|uninstall]]
 
|Custom uninstall method.  
 
|Custom uninstall method.  
 
|-
 
|-
 
|public  
 
|public  
|[[JInstallerLibrary::update/11.1|update]]
+
|[[API17:JInstallerLibrary::update|update]]
 
|Custom update method.  
 
|Custom update method.  
 
|-
 
|-
 
|}
 
|}
 
* '''Defined in''' libraries/joomla/installer/adapters/library.php
 
* '''Defined in''' libraries/joomla/installer/adapters/library.php
* '''Extends''' [[JAdapterInstance/11.1|JAdapterInstance]]
+
* '''Extends''' [[API17:JAdapterInstance|JAdapterInstance]]
 
===Importing===
 
===Importing===
 
<source lang="php">jimport( 'joomla.installer.adapters.library' );</source>
 
<source lang="php">jimport( 'joomla.installer.adapters.library' );</source>
 
===See also===
 
===See also===
 
* {{JVer|11.1}} '''JInstallerLibrary source code''' on [[jplatform:installer/adapters/library.php|BitBucket]]
 
* {{JVer|11.1}} '''JInstallerLibrary source code''' on [[jplatform:installer/adapters/library.php|BitBucket]]
* {{JVer|11.1}} Subpackage [[Subpackage Installer/11.1|Installer]]
+
* {{JVer|11.1}} Subpackage [[API17:Subpackage Installer|Installer]]
* [[JInstallerLibrary|Other versions of JInstallerLibrary]]
+
* [[API17:JInstallerLibrary|Other versions of JInstallerLibrary]]
{{SeeAlso:JInstallerLibrary}}
+
 
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[SeeAlso:JInstallerLibrary|Edit See Also]]<nowiki>]</nowiki>
 
</span>
 
 
===User contributed notes===
 
===User contributed notes===
<CodeExamplesForm />
+
=== Code Examples ===
 
<dpl>
 
<dpl>
 
noresultsheader=\n
 
noresultsheader=\n
 
category=JInstallerLibrary
 
category=JInstallerLibrary
category=CodeExample
+
namespace=CodeExample
 
category=ClassExample
 
category=ClassExample
 
include=*
 
include=*

Latest revision as of 22:18, 24 March 2017

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 JInstallerLibrary[edit]

Description[edit]

Methods[edit]

Visibility Method name Description
public discover Custom discover method.
public discover_install Custom discover_install method.
public install Custom install method.
public loadLanguage Custom loadLanguage method.
public refreshManifestCache Refreshes the extension table cache.
public uninstall Custom uninstall method.
public update Custom update method.
  • Defined in libraries/joomla/installer/adapters/library.php
  • Extends JAdapterInstance

Importing[edit]

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

See also[edit]


User contributed notes[edit]

Code Examples[edit]