API17

Difference between revisions of "JInstallerTemplate"

From Joomla! Documentation

m (→‎User contributed notes: moving preparation)
m (moving preparation)
Line 14: Line 14:
 
|-
 
|-
 
|public  
 
|public  
|[[JInstallerTemplate::discover/11.1|discover]]
+
|[[API17:JInstallerTemplate::discover|discover]]
 
|Discover existing but uninstalled templates.  
 
|Discover existing but uninstalled templates.  
 
|-
 
|-
 
|public  
 
|public  
|[[JInstallerTemplate::discover_install/11.1|discover_install]]
+
|[[API17:JInstallerTemplate::discover_install|discover_install]]
 
|Discover_install Perform an install for a discovered extension.  
 
|Discover_install Perform an install for a discovered extension.  
 
|-
 
|-
 
|public  
 
|public  
|[[JInstallerTemplate::install/11.1|install]]
+
|[[API17:JInstallerTemplate::install|install]]
 
|Custom install method.  
 
|Custom install method.  
 
|-
 
|-
 
|public  
 
|public  
|[[JInstallerTemplate::loadLanguage/11.1|loadLanguage]]
+
|[[API17:JInstallerTemplate::loadLanguage|loadLanguage]]
 
|Custom loadLanguage method.  
 
|Custom loadLanguage method.  
 
|-
 
|-
 
|public  
 
|public  
|[[JInstallerTemplate::refreshManifestCache/11.1|refreshManifestCache]]
+
|[[API17:JInstallerTemplate::refreshManifestCache|refreshManifestCache]]
 
|Refreshes the extension table cache.  
 
|Refreshes the extension table cache.  
 
|-
 
|-
 
|public  
 
|public  
|[[JInstallerTemplate::uninstall/11.1|uninstall]]
+
|[[API17:JInstallerTemplate::uninstall|uninstall]]
 
|Custom uninstall method.  
 
|Custom uninstall method.  
 
|-
 
|-
 
|public  
 
|public  
|[[JInstallerTemplate::update/11.1|update]]
+
|[[API17:JInstallerTemplate::update|update]]
 
|Custom update method for components.  
 
|Custom update method for components.  
 
|-
 
|-
 
|}
 
|}
 
* '''Defined in''' libraries/joomla/installer/adapters/template.php
 
* '''Defined in''' libraries/joomla/installer/adapters/template.php
* '''Extends''' [[JAdapterInstance/11.1|JAdapterInstance]]
+
* '''Extends''' [[API17:JAdapterInstance|JAdapterInstance]]
 
===Importing===
 
===Importing===
 
<source lang="php">jimport( 'joomla.installer.adapters.template' );</source>
 
<source lang="php">jimport( 'joomla.installer.adapters.template' );</source>
 
===See also===
 
===See also===
 
* {{JVer|11.1}} '''JInstallerTemplate source code''' on [[jplatform:installer/adapters/template.php|BitBucket]]
 
* {{JVer|11.1}} '''JInstallerTemplate source code''' on [[jplatform:installer/adapters/template.php|BitBucket]]
* {{JVer|11.1}} Subpackage [[Subpackage Installer/11.1|Installer]]
+
* {{JVer|11.1}} Subpackage [[API17:Subpackage Installer|Installer]]
* [[JInstallerTemplate|Other versions of JInstallerTemplate]]
+
* [[API17:JInstallerTemplate|Other versions of JInstallerTemplate]]
 
{{SeeAlso:JInstallerTemplate}}
 
{{SeeAlso:JInstallerTemplate}}
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">

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

Description[edit]

Template:Description:JInstallerTemplate [Edit Descripton]

Methods[edit]

Visibility Method name Description
public discover Discover existing but uninstalled templates.
public discover_install Discover_install Perform an install for a discovered extension.
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 for components.
  • Defined in libraries/joomla/installer/adapters/template.php
  • Extends JAdapterInstance

Importing[edit]

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

See also[edit]

Template:SeeAlso:JInstallerTemplate [Edit See Also]

User contributed notes[edit]

<CodeExamplesForm />