You are here

function ctools_ajax_command_reload in Chaos Tool Suite (ctools) 6

Same name and namespace in other branches
  1. 7 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 432
Utilize the CTools AJAX responder.

Code

function ctools_ajax_command_reload() {
  return array(
    'command' => 'reload',
  );
}