JInstallerLibrary::uninstall: Difference between revisions
From Joomla! Documentation
m clean up |
m preparing for archive only |
||
| Line 4: | Line 4: | ||
Custom uninstall method. | Custom uninstall method. | ||
<source lang="php"> | <source lang="php"> | ||
| Line 30: | Line 30: | ||
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Installer|Installer]] | * {{JVer|11.1}} Subpackage [[API17:Subpackage_Installer|Installer]] | ||
* [[API17:JInstallerLibrary::uninstall|Other versions of JInstallerLibrary::uninstall]] | * [[API17:JInstallerLibrary::uninstall|Other versions of JInstallerLibrary::uninstall]] | ||
===User contributed notes=== | ===User contributed notes=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=JInstallerLibrary::uninstall | category=JInstallerLibrary::uninstall | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
Latest revision as of 03:18, 25 March 2017
JInstallerLibrary::uninstall
Description
Custom uninstall method.
public function uninstall ($id)
| Parameter | Type | Default | Description |
|---|---|---|---|
| $id | string | The id of the library to uninstall |
- Returns boolean True on success
- Defined on line 216 of libraries/joomla/installer/adapters/library.php
- Since

See also
JInstallerLibrary::uninstall source code on BitBucket
Class JInstallerLibrary
Subpackage Installer- Other versions of JInstallerLibrary::uninstall
User contributed notes
Code Examples