1 drupal.inc drupal_get_query_parameters(array $query = NULL, array $exclude = array('q'), $parent = '')

Processes a URL query parameter array to remove unwanted elements.

Deprecated

since 1.0.0

See also

backdrop_get_query_parameters()

Related topics

File

core/includes/drupal.inc, line 599
Contains constants and function wrappers for Drupal 7.x compatibility.

Code

function drupal_get_query_parameters(array $query = NULL, array $exclude = array('q'), $parent = '') {
  return backdrop_get_query_parameters($query, $exclude, $parent);
}