function install_redirect_url

install_redirect_url($install_state)

Returns the URL that should be redirected to during an installation request.

The output of this function is suitable for sending to install_goto().

Parameters

$install_state: An array of information about the current installation state.

Return value

The URL to redirect to.

See also

install_full_redirect_url()

File

includes/install.core.inc, line 666
API functions for installing Drupal.

Code

function install_redirect_url($install_state) {
  return 'install.php?' . drupal_http_build_query($install_state['parameters']);
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/includes!install.core.inc/function/install_redirect_url/7.x