function dialog_command_reload in Dialog 7.2
Same name and namespace in other branches
- 7 dialog.module \dialog_command_reload()
Provides an AJAX command to reload the page.
Return value
array An array suitable for use with the ajax_render() function.
3 calls to dialog_command_reload()
- dialog_user_user_login_submit in modules/
dialog_user/ dialog_user.module - Ajax callback for the user login form.
- dialog_user_user_pass_submit in modules/
dialog_user/ dialog_user.module - Ajax callback for the user password reset form.
- dialog_user_user_register_form_submit in modules/
dialog_user/ dialog_user.module - Ajax callback for the user register form.
File
- includes/
dialog.commands.inc, line 176 - AJAX commands.
Code
function dialog_command_reload() {
return array(
'command' => 'reload',
);
}