API16

Difference between revisions of "JInstaller/cleanDiscoveredExtension"

From Joomla! Documentation

< API16:JInstaller
(New page: ===Description=== Cleans up discovered extensions if they're being installed somehow else <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JInstaller...)
 
m (preparing for archive only)
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
 
Cleans up discovered extensions if they're being installed somehow else  
 
Cleans up discovered extensions if they're being installed somehow else  
  
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[Description:JInstaller/cleanDiscoveredExtension|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
  
{{Description:JInstaller/cleanDiscoveredExtension}}
+
 
 +
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 49: Line 47:
 
</source>
 
</source>
  
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[SeeAlso:JInstaller/cleanDiscoveredExtension|Edit See Also]]<nowiki>]</nowiki>
+
<! removed transcluded page call, red link never existed >
</span>
 
{{SeeAlso:JInstaller/cleanDiscoveredExtension}}
 
  
 
===Examples===
 
===Examples===
<CodeExamplesForm />
+
=== Code Examples ===
 
<dpl>
 
<dpl>
 
  noresultsheader=\n
 
  noresultsheader=\n
 
  category=cleanDiscoveredExtension
 
  category=cleanDiscoveredExtension
 
  category=JInstaller
 
  category=JInstaller
  category=CodeExample
+
  namespace=CodeExample
 
  category=MethodExample
 
  category=MethodExample
 
  include=*
 
  include=*
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API16]]

Latest revision as of 20:47, 24 March 2017

The "API16" 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.

Description[edit]

Cleans up discovered extensions if they're being installed somehow else


<! removed transcluded page call, red link never existed >

Syntax[edit]

cleanDiscoveredExtension($type, $element, $folder='', $client=0)
Parameter Name Default Value Description
$type
$element
$folder
$client 0

Defined in[edit]

libraries/joomla/installer/installer.php

Importing[edit]

jimport( 'joomla.installer.installer' );

Source Body[edit]

public function cleanDiscoveredExtension($type, $element, $folder='', $client=0)
{
        $dbo =& JFactory::getDBO();
        $dbo->setQuery('DELETE FROM #__extensions WHERE type = '. $dbo->Quote($type).' AND element = '. $dbo->Quote($element) .' AND folder = '. $dbo->Quote($folder). ' AND client_id = '. intval($client).' AND state = -1');
        return $dbo->Query();
}


<! removed transcluded page call, red link never existed >

Examples[edit]

Code Examples[edit]