public function Fixed::buildOptionsForm in Drupal 10
Same name and namespace in other branches
- 8 core/modules/views/src/Plugin/views/argument_default/Fixed.php \Drupal\views\Plugin\views\argument_default\Fixed::buildOptionsForm()
- 9 core/modules/views/src/Plugin/views/argument_default/Fixed.php \Drupal\views\Plugin\views\argument_default\Fixed::buildOptionsForm()
File
- core/
modules/ views/ src/ Plugin/ views/ argument_default/ Fixed.php, line 34
Class
- Fixed
- The fixed argument default handler.
Namespace
Drupal\views\Plugin\views\argument_defaultCode
public function buildOptionsForm(&$form, FormStateInterface $form_state) {
parent::buildOptionsForm($form, $form_state);
$form['argument'] = [
'#type' => 'textfield',
'#title' => $this
->t('Fixed value'),
'#default_value' => $this->options['argument'],
];
}