API17

Difference between revisions of "JInstallerModule"

From Joomla! Documentation

m (→‎User contributed notes: moving preparation)
m (moving preparation)
Line 14: Line 14:
 
|-
 
|-
 
|public  
 
|public  
|[[JInstallerModule::discover/11.1|discover]]
+
|[[API17:JInstallerModule::discover|discover]]
 
|Custom discover method.  
 
|Custom discover method.  
 
|-
 
|-
 
|public  
 
|public  
|[[JInstallerModule::discover_install/11.1|discover_install]]
+
|[[API17:JInstallerModule::discover_install|discover_install]]
 
|Custom discover_install method.  
 
|Custom discover_install method.  
 
|-
 
|-
 
|public  
 
|public  
|[[JInstallerModule::install/11.1|install]]
+
|[[API17:JInstallerModule::install|install]]
 
|Custom install method.  
 
|Custom install method.  
 
|-
 
|-
 
|public  
 
|public  
|[[JInstallerModule::loadLanguage/11.1|loadLanguage]]
+
|[[API17:JInstallerModule::loadLanguage|loadLanguage]]
 
|Custom loadLanguage method.  
 
|Custom loadLanguage method.  
 
|-
 
|-
 
|public  
 
|public  
|[[JInstallerModule::refreshManifestCache/11.1|refreshManifestCache]]
+
|[[API17:JInstallerModule::refreshManifestCache|refreshManifestCache]]
 
|Refreshes the extension table cache.  
 
|Refreshes the extension table cache.  
 
|-
 
|-
 
|public  
 
|public  
|[[JInstallerModule::uninstall/11.1|uninstall]]
+
|[[API17:JInstallerModule::uninstall|uninstall]]
 
|Custom uninstall method.  
 
|Custom uninstall method.  
 
|-
 
|-
 
|public  
 
|public  
|[[JInstallerModule::update/11.1|update]]
+
|[[API17:JInstallerModule::update|update]]
 
|Custom update method This is really a shell for the install system.  
 
|Custom update method This is really a shell for the install system.  
 
|-
 
|-
 
|protected  
 
|protected  
|[[JInstallerModule::_rollback_menu/11.1|_rollback_menu]]
+
|[[API17:JInstallerModule::_rollback_menu|_rollback_menu]]
 
|Custom rollback method
 
|Custom rollback method
  
 
|-
 
|-
 
|protected  
 
|protected  
|[[JInstallerModule::_rollback_module/11.1|_rollback_module]]
+
|[[API17:JInstallerModule::_rollback_module|_rollback_module]]
 
|Custom rollback method
 
|Custom rollback method
  
Line 53: Line 53:
 
|}
 
|}
 
* '''Defined in''' libraries/joomla/installer/adapters/module.php
 
* '''Defined in''' libraries/joomla/installer/adapters/module.php
* '''Extends''' [[JAdapterInstance/11.1|JAdapterInstance]]
+
* '''Extends''' [[API17:JAdapterInstance|JAdapterInstance]]
 
===Importing===
 
===Importing===
 
<source lang="php">jimport( 'joomla.installer.adapters.module' );</source>
 
<source lang="php">jimport( 'joomla.installer.adapters.module' );</source>
 
===See also===
 
===See also===
 
* {{JVer|11.1}} '''JInstallerModule source code''' on [[jplatform:installer/adapters/module.php|BitBucket]]
 
* {{JVer|11.1}} '''JInstallerModule source code''' on [[jplatform:installer/adapters/module.php|BitBucket]]
* {{JVer|11.1}} Subpackage [[Subpackage Installer/11.1|Installer]]
+
* {{JVer|11.1}} Subpackage [[API17:Subpackage Installer|Installer]]
* [[JInstallerModule|Other versions of JInstallerModule]]
+
* [[API17:JInstallerModule|Other versions of JInstallerModule]]
 
{{SeeAlso:JInstallerModule}}
 
{{SeeAlso:JInstallerModule}}
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">

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

Description[edit]

Template:Description:JInstallerModule [Edit Descripton]

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 This is really a shell for the install system.
protected _rollback_menu Custom rollback method
protected _rollback_module Custom rollback method
  • Defined in libraries/joomla/installer/adapters/module.php
  • Extends JAdapterInstance

Importing[edit]

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

See also[edit]

Template:SeeAlso:JInstallerModule [Edit See Also]

User contributed notes[edit]

<CodeExamplesForm />