function devel_exit in Devel 6
Same name and namespace in other branches
- 5 devel.module \devel_exit()
File
- ./
devel.module, line 802
Code
function devel_exit($destination = NULL) {
global $user;
if (isset($destination) && !devel_silent()) {
// The page we are leaving is a drupal_goto(). Present a redirection page
// so that the developer can see the intermediate query log.
// We don't want to load user module here, so keep function_exists() call.
if (isset($user) && function_exists('user_access') && user_access('access devel information') && variable_get('devel_redirect_page', 0)) {
$output = t_safe('<p>The user is being redirected to <a href="@destination">@destination</a>.</p>', array(
'@destination' => $destination,
));
print theme('page', $output);
// Don't allow the automatic redirect to happen.
drupal_page_footer();
exit;
}
else {
$GLOBALS['devel_redirecting'] = TRUE;
}
}
}