public function Updater::postInstallTasks

Returns 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.

1 call to Updater::postInstallTasks()
Updater::install in drupal/core/lib/Drupal/Core/Updater/Updater.php
Installs a Drupal project, returns a list of next actions.
2 methods override Updater::postInstallTasks()
Module::postInstallTasks in drupal/core/lib/Drupal/Core/Updater/Module.php
Overrides Drupal\Core\Updater\Updater::postInstallTasks().
Theme::postInstallTasks in drupal/core/lib/Drupal/Core/Updater/Theme.php
Overrides Drupal\Core\Updater\Updater::postInstallTasks().

File

drupal/core/lib/Drupal/Core/Updater/Updater.php, line 361
Definition of Drupal\Core\Updater\Updater.

Class

Updater
Defines the base class for Updaters used in Drupal.

Namespace

Drupal\Core\Updater

Code

public function postInstallTasks() {
  return array();
}