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

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

Code

1
2
3
function install_redirect_url($install_state) {
  return 'core/install.php?' . UrlHelper::buildQuery($install_state['parameters']);
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.