Display::getForm

public Display::getForm(ViewEntityInterface $view, $display_id, $js, $type = NULL)

Creates a new instance of this form.

@todo When https://www.drupal.org/node/1843224 is in, this will return \Drupal\Core\Ajax\AjaxResponse instead of the array of AJAX commands.

Parameters

\Drupal\views\ViewEntityInterface $view: The view being edited.

string|null $display_id: The display ID being edited, or NULL to load the first available display.

string $js: If this is an AJAX form, it will be the string 'ajax'. Otherwise, it will be 'nojs'. This determines the response.

Return value

array An form for a specific operation in the Views UI, or an array of AJAX commands to render a form.

Overrides ViewsFormBase::getForm

File

core/modules/views_ui/src/Form/Ajax/Display.php, line 42

Class

Display
Provides a form for editing the Views display.

Namespace

Drupal\views_ui\Form\Ajax

Code

public function getForm(ViewEntityInterface $view, $display_id, $js, $type = NULL) {
  $this->setType($type);
  return parent::getForm($view, $display_id, $js);
}
doc_Drupal
2016-10-29 09:02:34
Comments
Leave a Comment

Please login to continue.