public function ViewUI::getStandardButtons

Provide a standard set of Apply/Cancel/OK buttons for the forms. Also provide a hidden op operator because the forms plugin doesn't seem to properly provide which button was clicked.

TODO: Is the hidden op operator still here somewhere, or is that part of the docblock outdated?

File

drupal/core/modules/views_ui/lib/Drupal/views_ui/ViewUI.php, line 268
Definition of Drupal\views_ui\ViewUI.

Class

ViewUI
Stores UI related temporary settings.

Namespace

Drupal\views_ui

Code

public function getStandardButtons(&$form, &$form_state, $form_id, $name = NULL) {
  $form['buttons'] = array(
    '#prefix' => '<div class="clearfix"><div class="form-buttons">',
    '#suffix' => '</div></div>',
  );
  if (empty($name)) {
    $name = t('Apply');
    if (!empty($this->stack) && count($this->stack) > 1) {
      $name = t('Apply and continue');
    }
    $names = array(
      t('Apply'),
      t('Apply and continue'),
    );
  }

  // Forms that are purely informational set an ok_button flag, so we know not
  // to create an "Apply" button for them.
  if (empty($form_state['ok_button'])) {
    $form['buttons']['submit'] = array(
      '#type' => 'submit',
      '#value' => $name,
      // The regular submit handler ($form_id . '_submit') does not apply if
      // we're updating the default display. It does apply if we're updating
      // the current display. Since we have no way of knowing at this point
      // which display the user wants to update, views_ui_standard_submit will
      // take care of running the regular submit handler as appropriate.
      '#submit' => array(
        array(
          $this,
          'standardSubmit',
        ),
      ),
      '#button_type' => 'primary',
    );

    // Form API button click detection requires the button's #value to be the
    // same between the form build of the initial page request, and the
    // initial form build of the request processing the form submission.
    // Ideally, the button's #value shouldn't change until the form rebuild
    // step. However, \Drupal\views_ui\Form\Ajax\ViewsFormBase::getForm()
    // implements a different multistep form workflow than the Form API does,
    // and adjusts $view->stack prior to form processing, so we compensate by
    // extending button click detection code to support any of the possible
    // button labels.
    if (isset($names)) {
      $form['buttons']['submit']['#values'] = $names;
      $form['buttons']['submit']['#process'] = array_merge(array(
        'views_ui_form_button_was_clicked',
      ), element_info_property($form['buttons']['submit']['#type'], '#process', array()));
    }

    // If a validation handler exists for the form, assign it to this button.
    if (isset($form_state['build_info']['callback_object'])) {
      $form['buttons']['submit']['#validate'][] = array(
        $form_state['build_info']['callback_object'],
        'validateForm',
      );
    }
    if (function_exists($form_id . '_validate')) {
      $form['buttons']['submit']['#validate'][] = $form_id . '_validate';
    }
  }

  // Create a "Cancel" button. For purely informational forms, label it "OK".
  $cancel_submit = function_exists($form_id . '_cancel') ? $form_id . '_cancel' : array(
    $this,
    'standardCancel',
  );
  $form['buttons']['cancel'] = array(
    '#type' => 'submit',
    '#value' => empty($form_state['ok_button']) ? t('Cancel') : t('Ok'),
    '#submit' => array(
      $cancel_submit,
    ),
    '#validate' => array(),
    '#limit_validation_errors' => array(),
  );

  // Compatibility, to be removed later: // TODO: When is "later"?
  // We used to set these items on the form, but now we want them on the $form_state:
  if (isset($form['#title'])) {
    $form_state['title'] = $form['#title'];
  }
  if (isset($form['#url'])) {
    $form_state['url'] = $form['#url'];
  }
  if (isset($form['#section'])) {
    $form_state['#section'] = $form['#section'];
  }

  // Finally, we never want these cached -- our object cache does that for us.
  $form['#no_cache'] = TRUE;

  // If this isn't an ajaxy form, then we want to set the title.
  if (!empty($form['#title'])) {
    drupal_set_title($form['#title']);
  }
}