You are here

public function PathPluginBase::submitOptionsForm in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/views/src/Plugin/views/display/PathPluginBase.php \Drupal\views\Plugin\views\display\PathPluginBase::submitOptionsForm()

Handle any special handling on the validate form.

Overrides DisplayPluginBase::submitOptionsForm

3 calls to PathPluginBase::submitOptionsForm()
Feed::submitOptionsForm in core/modules/views/src/Plugin/views/display/Feed.php
Handle any special handling on the validate form.
Page::submitOptionsForm in core/modules/views/src/Plugin/views/display/Page.php
Handle any special handling on the validate form.
RestExport::submitOptionsForm in core/modules/rest/src/Plugin/views/display/RestExport.php
Handle any special handling on the validate form.
3 methods override PathPluginBase::submitOptionsForm()
Feed::submitOptionsForm in core/modules/views/src/Plugin/views/display/Feed.php
Handle any special handling on the validate form.
Page::submitOptionsForm in core/modules/views/src/Plugin/views/display/Page.php
Handle any special handling on the validate form.
RestExport::submitOptionsForm in core/modules/rest/src/Plugin/views/display/RestExport.php
Handle any special handling on the validate form.

File

core/modules/views/src/Plugin/views/display/PathPluginBase.php, line 475

Class

PathPluginBase
The base display plugin for path/callbacks. This is used for pages and feeds.

Namespace

Drupal\views\Plugin\views\display

Code

public function submitOptionsForm(&$form, FormStateInterface $form_state) {
  parent::submitOptionsForm($form, $form_state);
  if ($form_state
    ->get('section') == 'path') {
    $this
      ->setOption('path', $form_state
      ->getValue('path'));
  }
}