API17

JInstallerModule: Difference between revisions

From Joomla! Documentation

Doxiki2 (talk | contribs)
Layout updates
m preparing for archive only
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
<span class="editsection" style="font-size:76%;">
=={{JVer|11.1}} JInstallerModule==
<nowiki>[</nowiki>[[Description:JInstallerModule|Edit Descripton]]<nowiki>]</nowiki>
===Description===
</span>
 
{{Description:JInstallerModule}}
 
===Defined in===
libraries/joomla/installer/adapters/module.php
* see source code in [[jplatform:installer/adapters/module.php|BitBucket]]
===Subpackage===
[[Subpackage Installer/11.1|Installer]]
===Extends===
[[JAdapterInstance/11.1|JAdapterInstance]]
===Extended by===
===Methods===
===Methods===
{| class="wikitable sortable"
{| class="wikitable sortable"
|-
|-
!Visibility
!Method name
!Method name
!Description
!Description
|-
|-
|[[JInstallerModule::discover/11.1|discover]]
|public
|[[API17:JInstallerModule::discover|discover]]
|Custom discover method.  
|Custom discover method.  
|-
|-
|[[JInstallerModule::discover_install/11.1|discover_install]]
|public
|[[API17:JInstallerModule::discover_install|discover_install]]
|Custom discover_install method.  
|Custom discover_install method.  
|-
|-
|[[JInstallerModule::install/11.1|install]]
|public
|[[API17:JInstallerModule::install|install]]
|Custom install method.  
|Custom install method.  
|-
|-
|[[JInstallerModule::loadLanguage/11.1|loadLanguage]]
|public
|[[API17:JInstallerModule::loadLanguage|loadLanguage]]
|Custom loadLanguage method.  
|Custom loadLanguage method.  
|-
|-
|[[JInstallerModule::refreshManifestCache/11.1|refreshManifestCache]]
|public
|[[API17:JInstallerModule::refreshManifestCache|refreshManifestCache]]
|Refreshes the extension table cache.  
|Refreshes the extension table cache.  
|-
|-
|[[JInstallerModule::uninstall/11.1|uninstall]]
|public
|[[API17:JInstallerModule::uninstall|uninstall]]
|Custom uninstall method.  
|Custom uninstall method.  
|-
|-
|[[JInstallerModule::update/11.1|update]]
|public
|[[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.  
|-
|-
|[[JInstallerModule::_rollback_menu/11.1|_rollback_menu]]
|protected
|[[API17:JInstallerModule::_rollback_menu|_rollback_menu]]
|Custom rollback method
|Custom rollback method


|-
|-
|[[JInstallerModule::_rollback_module/11.1|_rollback_module]]
|protected
|[[API17:JInstallerModule::_rollback_module|_rollback_module]]
|Custom rollback method
|Custom rollback method


|-
|-
|}
|}
* '''Defined in''' libraries/joomla/installer/adapters/module.php
* '''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===
* JInstallerModule source code in [[jplatform:installer/adapters/module.php|BitBucket]]
* {{JVer|11.1}} '''JInstallerModule source code''' on [[jplatform:installer/adapters/module.php|BitBucket]]
* [[JInstallerModule|Other versions of this class]]
* {{JVer|11.1}} Subpackage [[API17:Subpackage Installer|Installer]]
{{SeeAlso:JInstallerModule}}
* [[API17:JInstallerModule|Other versions of JInstallerModule]]
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[SeeAlso:JInstallerModule|Edit See Also]]<nowiki>]</nowiki>
 
</span>
===User contributed notes===
===Examples===
=== Code Examples ===
<CodeExamplesForm />
<dpl>
<dpl>
noresultsheader=\n
noresultsheader=\n
category=JInstallerModule
category=JInstallerModule
category=CodeExample
namespace=CodeExample
category=ClassExample
category=ClassExample
include=*
include=*
namespace=CodeExample
format= ,,,
format= ,,,
</dpl>
</dpl>
<noinclude>[[Category:Platform]][[Category:Platform 11.1]][[Category:JInstallerModule]]</noinclude>
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Latest revision as of 03:18, 25 March 2017

Joomla 11.1 JInstallerModule

Description

Methods

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

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

See also


User contributed notes

Code Examples