You are here

function query_parameters_to_url_redirect_status_code in Query Parameters To URL 7

Returns the variable value of the HTTP status code for redirects.

2 calls to query_parameters_to_url_redirect_status_code()
query_parameters_to_url_admin_settings in ./query_parameters_to_url.admin.inc
Admin settings page callback.
query_parameters_to_url_init in ./query_parameters_to_url.module
Implements hook_init().
1 string reference to 'query_parameters_to_url_redirect_status_code'
query_parameters_to_url.module in ./query_parameters_to_url.module
Query Arguments To URL module.

File

./query_parameters_to_url.module, line 132
Query Arguments To URL module.

Code

function query_parameters_to_url_redirect_status_code() {
  return variable_get(QUERY_PARAMETERS_TO_URL_REDIRECT_STATUS_CODE, 302);
}