ctools_ajax_command_redirect

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.

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.

4 functions call ctools_ajax_command_redirect()

File

contributions/ctools/includes/ajax.inc, line 83
Extend core AJAX with some of our own stuff.

Code

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