ModuleUpdater::postInstallTasks

7 system.updater.inc public ModuleUpdater::postInstallTasks()

Return an array of links to pages that should be visited post operation.

Return value

array Links which provide actions to take after the install is finished.

Overrides Updater::postInstallTasks

File

modules/system/system.updater.inc, line 76
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 postInstallTasks() {
  return array(
    l(t('Enable newly added modules'), 'admin/modules'),
    l(t('Administration pages'), 'admin'),
  );
}
Login or register to post comments