API16

JInstaller/cleanDiscoveredExtension

From Joomla! Documentation

< API16:JInstaller

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]