refreshUpdateSite() public method

Refreshes the Joomla! update sites for this extension as needed
public refreshUpdateSite ( ) : void
return void
コード例 #1
0
ファイル: Updates.php プロジェクト: AlexanderKri/joom-upd
 /**
  * Refreshes the update sites, removing obsolete update sites in the process
  */
 public function refreshUpdateSite()
 {
     // Remove any update sites for the old com_akeeba package
     $this->removeObsoleteComponentUpdateSites();
     // Refresh our update sites
     parent::refreshUpdateSite();
 }