ThemeUpdater::postInstall

7 system.updater.inc public ThemeUpdater::postInstall()

Perform actions after installation.

Overrides Updater::postInstall

File

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

Code

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

}
Login or register to post comments