Back to Installer class

Method setPackageUninstall

public void
setPackageUninstall
(mixed $uninstall)
Set whether this installer is uninstalling extensions which are part of a package
Parameters
  • bool $uninstall True if a package triggered the uninstall, false otherwise
Returns
  • void
Since
  • 3.7.0
Class: Installer
Project: Joomla

Method setPackageUninstall - Source code

/**
 * Set whether this installer is uninstalling extensions which are part of a package
 *
 * @param   boolean  $uninstall  True if a package triggered the uninstall, false otherwise
 *
 * @return  void
 *
 * @since   3.7.0
 */
public function setPackageUninstall($uninstall)
{
    $this->packageUninstall = $uninstall;
}