API17

Difference between revisions of "JInstaller::uninstall"

From Joomla! Documentation

(Layout updates)
m (preparing for archive only)
 
(5 intermediate revisions by 2 users not shown)
Line 4: Line 4:
 
Package uninstallation method.  
 
Package uninstallation method.  
  
{{Description:JInstaller::uninstall}}
+
 
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[Description:JInstaller::uninstall|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
===Since===
 
{{JVer|11.1 }}
 
===Synopsis===
 
 
<source lang="php">
 
<source lang="php">
public JInstaller::uninstall ($type, $identifier, $cid=0)
+
public function uninstall (
 +
        $type
 +
        $identifier
 +
        $cid=0
 +
)
 
</source>
 
</source>
 
{| class="wikitable"
 
{| class="wikitable"
Line 34: Line 33:
 
|int
 
|int
 
|0
 
|0
|Application ID; deprecated in 1.6  
+
|Application ID; deprecated in 1.6
 
|-
 
|-
 
|}
 
|}
===Returns===
+
* '''Returns''' boolean True if successful
boolean True if successful
+
* '''Defined''' on line 554 of libraries/joomla/installer/installer.php
===Defined in===
+
* '''Since''' {{JVer|11.1 }}
libraries/joomla/installer/installer.php (line 564)
 
* see source code in [[jplatform:installer/installer.php#cl-564|BitBucket]]
 
===Referenced by===
 
 
===See also===
 
===See also===
<span class="editsection" style="font-size:76%;">
+
* {{JVer|11.1}} '''JInstaller::uninstall source code''' on [[jplatform:installer/installer.php#cl-546|BitBucket]]
<nowiki>[</nowiki>[[SeeAlso:JInstaller::uninstall|Edit See Also]]<nowiki>]</nowiki>
+
* {{JVer|11.1}} Class [[API17:JInstaller|JInstaller]]
</span>
+
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Installer|Installer]]
* [[JInstaller/11.1|JInstaller]]
+
* [[API17:JInstaller::uninstall|Other versions of JInstaller::uninstall]]
* [[JInstaller::uninstall|Other versions of this method]]
+
 
{{SeeAlso:JInstaller::uninstall}}
+
 
===Examples===
+
===User contributed notes===
<CodeExamplesForm />
+
=== Code Examples ===
 
<dpl>
 
<dpl>
 
noresultsheader=\n
 
noresultsheader=\n
 
category=JInstaller::uninstall
 
category=JInstaller::uninstall
category=CodeExample
+
namespace=CodeExample
 
category=MethodExample
 
category=MethodExample
 
include=*
 
include=*
 +
namespace=CodeExample
 
format= ,,,
 
format= ,,,
 
</dpl>
 
</dpl>
<noinclude>[[Category:JInstaller]][[Category:JInstaller::uninstall]]</noinclude>
+
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Latest revision as of 22:17, 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 JInstaller::uninstall[edit]

Description[edit]

Package uninstallation method.


public function uninstall (
        $type
        $identifier
        $cid=0
)
Parameter Type Default Description
$type string Package type
$identifier mixed Package identifier for adapter
$cid int 0 Application ID; deprecated in 1.6
  • Returns boolean True if successful
  • Defined on line 554 of libraries/joomla/installer/installer.php
  • Since Joomla 11.1

See also[edit]


User contributed notes[edit]

Code Examples[edit]