You are here

migrate_upgrade.install in Migrate Upgrade 8

Install, update and uninstall functions for the migrate_upgrade module.

File

migrate_upgrade.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for the migrate_upgrade module.
 */
use Drupal\Core\Url;

/**
 * Implements hook_install().
 */
function migrate_upgrade_install() {
  $url = Url::fromUri('base:upgrade')
    ->toString();
  drupal_set_message(t('The Drupal Upgrade module has been enabled. Proceed to the <a href=":url">upgrade form</a>.', [
    ':url' => $url,
  ]));
}

Functions

Namesort descending Description
migrate_upgrade_install Implements hook_install().