function install_full_redirect_url
Same name in other branches
- 7.x includes/install.core.inc \install_full_redirect_url()
- 9 core/includes/install.core.inc \install_full_redirect_url()
- 8.9.x core/includes/install.core.inc \install_full_redirect_url()
- 10 core/includes/install.core.inc \install_full_redirect_url()
Returns the complete URL redirected to during an installation request.
Parameters
$install_state: An array of information about the current installation state.
Return value
string The complete URL to redirect to.
See also
1 call to install_full_redirect_url()
- SelectLanguageForm::buildForm in core/
lib/ Drupal/ Core/ Installer/ Form/ SelectLanguageForm.php - Form constructor.
File
-
core/
includes/ install.core.inc, line 1022
Code
function install_full_redirect_url($install_state) {
global $base_url;
return $base_url . '/' . install_redirect_url($install_state);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.