public function ModuleUpdater::postInstallTasks

public ModuleUpdater::postInstallTasks()

Returns a list of post install actions.

Overrides Updater::postInstallTasks

File

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

Class

ModuleUpdater
Class for updating modules using FileTransfer classes via authorize.php.

Code

public function postInstallTasks() {
  return array(
    l(t('Install another module'), 'admin/modules/install'),
    l(t('Enable newly added modules'), 'admin/modules'),
    l(t('Administration pages'), 'admin'),
  );
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!system!system.updater.inc/function/ModuleUpdater::postInstallTasks/7.x