1 system.updater.inc public LayoutUpdater::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

core/modules/system/system.updater.inc, line 227
Subclasses of the Updater class to update Backdrop core, modules, themes, and layouts.

Class

LayoutUpdater
Class for updating layouts using FileTransfer classes via authorize.php.

Code

public function postInstallTasks() {
  return array(
    l(t('Use newly added layouts'), 'admin/structure/layouts'),
    l(t('Browse more layouts'), 'admin/structure/layouts/install'),
  );
}