You are here

function install_goto in Drupal 9

Same name and namespace in other branches
  1. 8 core/includes/install.inc \install_goto()
  2. 5 includes/install.inc \install_goto()
  3. 6 includes/install.inc \install_goto()
  4. 7 includes/install.inc \install_goto()
  5. 10 core/includes/install.inc \install_goto()

Sends the user to a different installer page.

This issues an on-site HTTP redirect. Messages (and errors) are erased.

Parameters

$path: An installer path.

2 calls to install_goto()
install_download_translation in core/includes/install.core.inc
Download a translation file for the selected language.
install_drupal in core/includes/install.core.inc
Installs Drupal either interactively or via an array of passed-in settings.

File

core/includes/install.inc, line 875
API functions for installing modules and themes.

Code

function install_goto($path) {
  global $base_url;
  $headers = [
    // Not a permanent redirect.
    'Cache-Control' => 'no-cache',
  ];
  $response = new RedirectResponse($base_url . '/' . $path, 302, $headers);
  $response
    ->send();
}