JInstallerFile: Difference between revisions
From Joomla! Documentation
Bulk upload by Doxiki2 |
m preparing for archive only |
||
| (7 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
=={{JVer|11.1}} JInstallerFile== | |||
===Description=== | |||
{{ | |||
=== | |||
===Methods=== | ===Methods=== | ||
{| class="wikitable sortable" | {| class="wikitable sortable" | ||
|- | |- | ||
!Visibility | |||
!Method name | !Method name | ||
!Description | !Description | ||
|- | |- | ||
|[[JInstallerFile::install | |public | ||
|[[API17:JInstallerFile::install|install]] | |||
|Custom install method. | |Custom install method. | ||
|- | |- | ||
|[[JInstallerFile::loadLanguage | |public | ||
|[[API17:JInstallerFile::loadLanguage|loadLanguage]] | |||
|Custom loadLanguage method. | |Custom loadLanguage method. | ||
|- | |- | ||
|[[JInstallerFile::refreshManifestCache | |public | ||
|[[API17:JInstallerFile::refreshManifestCache|refreshManifestCache]] | |||
|Refreshes the extension table cache. | |Refreshes the extension table cache. | ||
|- | |- | ||
|[[JInstallerFile::uninstall | |public | ||
|[[API17:JInstallerFile::uninstall|uninstall]] | |||
|Custom uninstall method. | |Custom uninstall method. | ||
|- | |- | ||
|[[JInstallerFile::update | |public | ||
|Custom update method | |[[API17:JInstallerFile::update|update]] | ||
|Custom update method. | |||
|- | |- | ||
|} | |} | ||
* '''Defined in''' libraries/joomla/installer/adapters/file.php | |||
* '''Extends''' [[API17:JAdapterInstance|JAdapterInstance]] | |||
===Importing=== | ===Importing=== | ||
<source lang="php">jimport( 'joomla.installer.adapters.file' );</source> | <source lang="php">jimport( 'joomla.installer.adapters.file' );</source> | ||
===See also=== | ===See also=== | ||
* [[ | * {{JVer|11.1}} '''JInstallerFile source code''' on [[jplatform:installer/adapters/file.php|BitBucket]] | ||
{{ | * {{JVer|11.1}} Subpackage [[API17:Subpackage Installer|Installer]] | ||
* [[API17:JInstallerFile|Other versions of JInstallerFile]] | |||
===Examples=== | ===User contributed notes=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=JInstallerFile | category=JInstallerFile | ||
namespace=CodeExample | |||
category=ClassExample | category=ClassExample | ||
include=* | include=* | ||
namespace=CodeExample | |||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
<noinclude> | <noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude> | ||
Latest revision as of 03:17, 25 March 2017
JInstallerFile
Description
Methods
| Visibility | Method name | Description |
|---|---|---|
| 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/file.php
- Extends JAdapterInstance
Importing
jimport( 'joomla.installer.adapters.file' );
See also
JInstallerFile source code on BitBucket
Subpackage Installer- Other versions of JInstallerFile
User contributed notes
Code Examples