function views_ajax_command_show_buttons

Shows Save and Cancel buttons.

Return value

An array suitable for use with the ajax_render() function.

Related topics

1 call to views_ajax_command_show_buttons()
views_ui_ajax_form in drupal/core/modules/views/views_ui/admin.inc
Generic entry point to handle forms.

File

drupal/core/modules/views/includes/ajax.inc, line 181
Handles the server side AJAX interactions of Views.

Code

function views_ajax_command_show_buttons() {
  $command = array(
    'command' => 'viewsShowButtons',
  );
  return $command;
}