public function ViewEditFormController::rebuildCurrentTab

Regenerate the current tab for AJAX updates.

Parameters

\Drupal\views_ui\ViewUI $view: The view to regenerate its tab.

\Drupal\Core\Ajax\AjaxResponse $response: The response object to add new commands to.

string $display_id: The display ID of the tab to regenerate.

File

drupal/core/modules/views_ui/lib/Drupal/views_ui/ViewEditFormController.php, line 628
Contains Drupal\views_ui\ViewEditFormController.

Class

ViewEditFormController
Form controller for the Views edit form.

Namespace

Drupal\views_ui

Code

public function rebuildCurrentTab(ViewUI $view, AjaxResponse $response, $display_id) {
  $this->displayID = $display_id;
  if (!$view
    ->get('executable')
    ->setDisplay('default')) {
    return;
  }

  // Regenerate the main display area.
  $build = $this
    ->getDisplayTab($view);
  static::addMicroweights($build);
  $response
    ->addCommand(new HtmlCommand('#views-tab-' . $display_id, drupal_render($build)));

  // Regenerate the top area so changes to display names and order will appear.
  $build = $this
    ->renderDisplayTop($view);
  static::addMicroweights($build);
  $response
    ->addCommand(new ReplaceCommand('#views-display-top', drupal_render($build)));
}