You are here

function _photos_pager_get_query in Album Photos 7.3

Returns array of query parameters.

1 call to _photos_pager_get_query()
_photos_order_link in ./photos.module
Limit and sort by links.

File

./photos.module, line 2413
Implementation of photos.module.

Code

function _photos_pager_get_query() {
  $query = array();
  if (!isset($string)) {
    $query = drupal_get_query_parameters($_REQUEST, array_merge(array(
      'limit',
      'q',
      'page',
      'destination',
    ), array_keys($_COOKIE)));
  }
  return $query;
}