| 1 system.updater.inc | public ModuleUpdater::postInstall() | 
List of post install actions.
Overrides Updater::postInstall
File
- core/modules/ system/ system.updater.inc, line 100 
- Subclasses of the Updater class to update Backdrop core, modules, themes, and layouts.
Class
- ModuleUpdater
- Class for updating modules using FileTransfer classes via authorize.php.
Code
public function postInstall() {
  $project = array();
  $project['name'] = $this->name;
  $project['type'] = 'module';
  $_SESSION['project_browser_installed_projects'][$this->name] = $project;
}
