You are here

function ctools_ajax_command_reload in Chaos Tool Suite (ctools) 7

Same name and namespace in other branches
  1. 6 includes/ajax.inc \ctools_ajax_command_reload()

Force a reload of the current page.

1 call to ctools_ajax_command_reload()
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 127
Set this so we can tell that the file has been included at some point.

Code

function ctools_ajax_command_reload() {
  ctools_add_js('ajax-responder');
  return array(
    'command' => 'reload',
  );
}