public function NullArgument::buildOptionsForm in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/views/src/Plugin/views/argument/NullArgument.php \Drupal\views\Plugin\views\argument\NullArgument::buildOptionsForm()
Override buildOptionsForm() so that only the relevant options are displayed to the user.
Overrides ArgumentPluginBase::buildOptionsForm
File
- core/
modules/ views/ src/ Plugin/ views/ argument/ NullArgument.php, line 31 - Contains \Drupal\views\Plugin\views\argument\NullArgument.
Class
- NullArgument
- Argument handler that ignores the argument.
Namespace
Drupal\views\Plugin\views\argumentCode
public function buildOptionsForm(&$form, FormStateInterface $form_state) {
parent::buildOptionsForm($form, $form_state);
$form['must_not_be'] = array(
'#type' => 'checkbox',
'#title' => $this
->t('Fail basic validation if any argument is given'),
'#default_value' => !empty($this->options['must_not_be']),
'#description' => $this
->t('By checking this field, you can use this to make sure views with more arguments than necessary fail validation.'),
'#group' => 'options][more',
);
unset($form['exception']);
}