You are here

function views_ui_edit_display_form_override_update_section in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 6.2 includes/admin.inc \views_ui_edit_display_form_override_update_section()

Override handler and submit views_ui_edit_display_form

1 string reference to 'views_ui_edit_display_form_override_update_section'
views_ui_standard_form_buttons in includes/admin.inc
Provide standard buttons for the forms to make it easy. Also provide a hidden op operator because the forms plugin doesn't seem to properly provide which button was clicked.

File

includes/admin.inc, line 2440
admin.inc Provides the Views' administrative interface.

Code

function views_ui_edit_display_form_override_update_section(&$form, &$form_state) {

  // Update the #section so it knows what to mark changed.
  $form['#section'] = str_replace('default-', $form_state['display_id'] . '-', $form['#section']);
}