You are here

function biblio_goto in Bibliography Module 7

Sends the user to the page with URL "$path?$param=$value".

Parameters

string $path: The path to send the user to.

string $param: The query parameter name.

string $value: The query parameter value.

1 string reference to 'biblio_goto'
biblio_menu in ./biblio.module
Implements hook_menu().

File

./biblio.module, line 1108
Bibliography Module for Drupal.

Code

function biblio_goto($path, $param, $value) {
  drupal_goto($path, array(
    'query' => array(
      $param => $value,
    ),
  ));
}