You are here

function query_parameters_to_url_nested_values_delimiter in Query Parameters To URL 7

Returns the variable value to be used for delimiting nested values.

5 calls to query_parameters_to_url_nested_values_delimiter()
query_parameters_to_url_admin_settings in ./query_parameters_to_url.admin.inc
Admin settings page callback.
query_parameters_to_url_decode_encoded_query_parameter in ./query_parameters_to_url.module
Decodes an encoded string into an array of query parameters.
query_parameters_to_url_encoded_query_parameter_values_string_is_array in ./query_parameters_to_url.module
Checks if an encoded query parameter values string is an array.
query_parameters_to_url_encode_query_parameter_values in ./query_parameters_to_url.module
Encodes an array of nested query parameters into a clean string.
query_parameters_to_url_replace_url_encoded_delimiters in ./query_parameters_to_url.module
Replace possibly percent-encoded characters with the actual chars.

File

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

Code

function query_parameters_to_url_nested_values_delimiter() {
  return variable_get(QUERY_PARAMETERS_TO_URL_QUERY_NESTED_VALUES_DELIMITER, '--');
}