| 6 ajax.inc | ctools_ajax_command_redirect($url, $delay = 0, $options = array()) |
| 7 ajax.inc | ctools_ajax_command_redirect($url, $delay = 0, $options = array()) |
Force a client-side redirect.
$url: The url to be redirected to. This can be an absolute URL or a Drupal path.
$delay: A delay before applying the redirection, in milliseconds.
$options: An array of options to pass to the url() function.
<?php
function ctools_ajax_command_redirect($url, $delay = 0, $options = array()) {
ctools_add_js('ajax-responder');
return array(
'command' => 'redirect',
'url' => url($url, $options),
'delay' => $delay,
);
}
?>