| 5 common.inc | drupal_get_destination() |
| 6 common.inc | drupal_get_destination() |
| 7 common.inc | drupal_get_destination() |
| 8 common.inc | drupal_get_destination() |
Prepare a destination query string for use in combination with drupal_goto(). Used to direct the user back to the referring page after completing a form. By default the current URL is returned. If a destination exists in the previous request, that destination is returned. As such, a destination can persist across multiple pages.
See also
File
- includes/
common.inc, line 247 - Common functions that many Drupal modules will need to reference.
Code
<?php
function drupal_get_destination() {
if (isset($_REQUEST['destination'])) {
return 'destination=' . urlencode($_REQUEST['destination']);
}
else {
// Use $_GET here to retrieve the original path in source form.
$path = isset($_GET['q']) ? $_GET['q'] : '';
$query = drupal_query_string_encode($_GET, array('q'));
if ($query != '') {
$path .= '?' . $query;
}
return 'destination=' . urlencode($path);
}
}
?>Login or register to post comments