public function ThemeUpdater::postInstall

Perform actions after installation.

Overrides Updater::postInstall

Archivo

drupal-7.x/modules/system/system.updater.inc, line 137
Subclasses of the Updater class to update Drupal core knows how to update. At this time, only modules and themes are supported.

Class

ThemeUpdater
Class for updating themes using FileTransfer classes via authorize.php.

Código

public function postInstall() {
  // Update the system table.
  clearstatcache();
  system_rebuild_theme_data();

}