You are here

function noderelationships_querystring in Node Relationships 6

Compose a query string to append to node reference extra page requests.

Return value

A query string that consists of all components of the current page request.

2 calls to noderelationships_querystring()
noderelationships_noderef_page_create in ./noderelationships.pages.inc
Build the create and reference page.
theme_noderelationships_noderef_page_tabs in ./noderelationships.pages.inc
Render search/create tabs.

File

./noderelationships.inc, line 1289
Common functions for the noderelationships module.

Code

function noderelationships_querystring() {
  return drupal_query_string_encode($_GET, array_merge(array(
    'q',
    'destination',
    'pass',
    'translation',
    'language',
  ), array_keys($_COOKIE)));
}