You are here

function query_parameters_to_url_additional_paths_hooks_enabled in Query Parameters To URL 7

Returns the variable value if additional paths rewrite hooks are enabled.

2 calls to query_parameters_to_url_additional_paths_hooks_enabled()
query_parameters_to_url_admin_settings in ./query_parameters_to_url.admin.inc
Admin settings page callback.
query_parameters_to_url_path_should_be_rewritten in ./query_parameters_to_url.module
Check whether given path should be rewritten.

File

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

Code

function query_parameters_to_url_additional_paths_hooks_enabled() {
  return variable_get(QUERY_PARAMETERS_TO_URL_ADDITIONAL_PATHS_HOOKS_ENABLED, TRUE);
}