public function Module::postInstallTasks in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Updater/Module.php \Drupal\Core\Updater\Module::postInstallTasks()
- 9 core/lib/Drupal/Core/Updater/Module.php \Drupal\Core\Updater\Module::postInstallTasks()
File
- core/
lib/ Drupal/ Core/ Updater/ Module.php, line 107
Class
- Module
- Defines a class for updating modules using Drupal\Core\FileTransfer\FileTransfer classes via authorize.php.
Namespace
Drupal\Core\UpdaterCode
public function postInstallTasks() {
// Since this is being called outside of the primary front controller,
// the base_url needs to be set explicitly to ensure that links are
// relative to the site root.
// @todo Simplify with https://www.drupal.org/node/2548095
$default_options = [
'#type' => 'link',
'#options' => [
'absolute' => TRUE,
'base_url' => $GLOBALS['base_url'],
],
];
return [
$default_options + [
'#url' => Url::fromRoute('update.module_install'),
'#title' => t('Add another module'),
],
$default_options + [
'#url' => Url::fromRoute('system.modules_list'),
'#title' => t('Enable newly added modules'),
],
$default_options + [
'#url' => Url::fromRoute('system.admin'),
'#title' => t('Administration pages'),
],
];
}