You are here

public function Standard::buildOptionsForm in Views XML Backend 8

Same name in this branch
  1. 8 src/Plugin/views/filter/Standard.php \Drupal\views_xml_backend\Plugin\views\filter\Standard::buildOptionsForm()
  2. 8 src/Plugin/views/sort/Standard.php \Drupal\views_xml_backend\Plugin\views\sort\Standard::buildOptionsForm()
  3. 8 src/Plugin/views/argument/Standard.php \Drupal\views_xml_backend\Plugin\views\argument\Standard::buildOptionsForm()
  4. 8 src/Plugin/views/field/Standard.php \Drupal\views_xml_backend\Plugin\views\field\Standard::buildOptionsForm()

Default options form that provides the label widget that all fields should have.

Overrides FieldPluginBase::buildOptionsForm

1 call to Standard::buildOptionsForm()
Markup::buildOptionsForm in src/Plugin/views/field/Markup.php
Default options form that provides the label widget that all fields should have.
1 method overrides Standard::buildOptionsForm()
Markup::buildOptionsForm in src/Plugin/views/field/Markup.php
Default options form that provides the label widget that all fields should have.

File

src/Plugin/views/field/Standard.php, line 38
Contains \Drupal\views_xml_backend\Plugin\views\field\Standard.

Class

Standard
A handler to provide an XML text field.

Namespace

Drupal\views_xml_backend\Plugin\views\field

Code

public function buildOptionsForm(&$form, FormStateInterface $form_state) {
  $form = $this
    ->getDefaultXmlOptionsForm($form, $form_state);
  parent::buildOptionsForm($form, $form_state);
}