function PathPluginBase::submitOptionsForm
Same name in other branches
- 9 core/modules/views/src/Plugin/views/display/PathPluginBase.php \Drupal\views\Plugin\views\display\PathPluginBase::submitOptionsForm()
- 10 core/modules/views/src/Plugin/views/display/PathPluginBase.php \Drupal\views\Plugin\views\display\PathPluginBase::submitOptionsForm()
- 11.x core/modules/views/src/Plugin/views/display/PathPluginBase.php \Drupal\views\Plugin\views\display\PathPluginBase::submitOptionsForm()
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\displayCode
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'));
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.