function ctools_ajax_command_redirect

Force a client-side redirect.

Parameters

$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.

1 call to ctools_ajax_command_redirect()
ctools_ajax_sample_login_success in ctools_ajax_sample/ctools_ajax_sample.module
Post-login processor: should we go to the user account or stay in place?

File

includes/ajax.inc, line 115

Code

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,
    );
}