API17

Difference between revisions of "JInstallerPackage"

From Joomla! Documentation

m (JoomlaWikiBot moved page JInstallerPackage/11.1 to API17:JInstallerPackage without leaving a redirect: Robot: Moved page)
m (preparing for archive only)
 
(3 intermediate revisions by the same user not shown)
Line 2: Line 2:
 
=={{JVer|11.1}} JInstallerPackage==
 
=={{JVer|11.1}} JInstallerPackage==
 
===Description===
 
===Description===
{{Description:JInstallerPackage}}
+
 
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[Description:JInstallerPackage|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
 
===Methods===
 
===Methods===
 
{| class="wikitable sortable"
 
{| class="wikitable sortable"
Line 14: Line 12:
 
|-
 
|-
 
|public  
 
|public  
|[[JInstallerPackage::install/11.1|install]]
+
|[[API17:JInstallerPackage::install|install]]
 
|Custom install method.  
 
|Custom install method.  
 
|-
 
|-
 
|public  
 
|public  
|[[JInstallerPackage::loadLanguage/11.1|loadLanguage]]
+
|[[API17:JInstallerPackage::loadLanguage|loadLanguage]]
 
|
 
|
 
|-
 
|-
 
|public  
 
|public  
|[[JInstallerPackage::refreshManifestCache/11.1|refreshManifestCache]]
+
|[[API17:JInstallerPackage::refreshManifestCache|refreshManifestCache]]
 
|Refreshes the extension table cache.  
 
|Refreshes the extension table cache.  
 
|-
 
|-
 
|public  
 
|public  
|[[JInstallerPackage::uninstall/11.1|uninstall]]
+
|[[API17:JInstallerPackage::uninstall|uninstall]]
 
|Custom uninstall method.  
 
|Custom uninstall method.  
 
|-
 
|-
 
|public  
 
|public  
|[[JInstallerPackage::update/11.1|update]]
+
|[[API17:JInstallerPackage::update|update]]
 
|Updates a package The only difference between an update and a full install is how we handle the database.  
 
|Updates a package The only difference between an update and a full install is how we handle the database.  
 
|-
 
|-
 
|}
 
|}
 
* '''Defined in''' libraries/joomla/installer/adapters/package.php
 
* '''Defined in''' libraries/joomla/installer/adapters/package.php
* '''Extends''' [[JAdapterInstance/11.1|JAdapterInstance]]
+
* '''Extends''' [[API17:JAdapterInstance|JAdapterInstance]]
 
===Importing===
 
===Importing===
 
<source lang="php">jimport( 'joomla.installer.adapters.package' );</source>
 
<source lang="php">jimport( 'joomla.installer.adapters.package' );</source>
 
===See also===
 
===See also===
 
* {{JVer|11.1}} '''JInstallerPackage source code''' on [[jplatform:installer/adapters/package.php|BitBucket]]
 
* {{JVer|11.1}} '''JInstallerPackage source code''' on [[jplatform:installer/adapters/package.php|BitBucket]]
* {{JVer|11.1}} Subpackage [[Subpackage Installer/11.1|Installer]]
+
* {{JVer|11.1}} Subpackage [[API17:Subpackage Installer|Installer]]
* [[JInstallerPackage|Other versions of JInstallerPackage]]
+
* [[API17:JInstallerPackage|Other versions of JInstallerPackage]]
{{SeeAlso:JInstallerPackage}}
+
 
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[SeeAlso:JInstallerPackage|Edit See Also]]<nowiki>]</nowiki>
 
</span>
 
 
===User contributed notes===
 
===User contributed notes===
<CodeExamplesForm />
+
=== Code Examples ===
 
<dpl>
 
<dpl>
 
noresultsheader=\n
 
noresultsheader=\n
 
category=JInstallerPackage
 
category=JInstallerPackage
category=CodeExample
+
namespace=CodeExample
 
category=ClassExample
 
category=ClassExample
 
include=*
 
include=*
Line 57: Line 53:
 
format= ,,,
 
format= ,,,
 
</dpl>
 
</dpl>
<noinclude>[[Category:Platform JClasses]][[Category:Platform 11.1]][[Category:JInstallerPackage]]</noinclude>
+
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Latest revision as of 22:19, 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 JInstallerPackage[edit]

Description[edit]

Methods[edit]

Visibility Method name Description
public install Custom install method.
public loadLanguage
public refreshManifestCache Refreshes the extension table cache.
public uninstall Custom uninstall method.
public update Updates a package The only difference between an update and a full install is how we handle the database.
  • Defined in libraries/joomla/installer/adapters/package.php
  • Extends JAdapterInstance

Importing[edit]

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

See also[edit]


User contributed notes[edit]

Code Examples[edit]