function StringListField::buildOptionsForm
Same name in other branches
- 9 core/modules/options/src/Plugin/views/argument/StringListField.php \Drupal\options\Plugin\views\argument\StringListField::buildOptionsForm()
- 8.9.x core/modules/options/src/Plugin/views/argument/StringListField.php \Drupal\options\Plugin\views\argument\StringListField::buildOptionsForm()
- 10 core/modules/options/src/Plugin/views/argument/StringListField.php \Drupal\options\Plugin\views\argument\StringListField::buildOptionsForm()
Overrides StringArgument::buildOptionsForm
File
-
core/
modules/ options/ src/ Plugin/ views/ argument/ StringListField.php, line 56
Class
- StringListField
- Argument handler for list field to show the human readable name in summary.
Namespace
Drupal\options\Plugin\views\argumentCode
public function buildOptionsForm(&$form, FormStateInterface $form_state) {
parent::buildOptionsForm($form, $form_state);
$form['summary']['human'] = [
'#title' => $this->t('Display list value as human readable'),
'#type' => 'checkbox',
'#default_value' => $this->options['summary']['human'],
'#states' => [
'visible' => [
':input[name="options[default_action]"]' => [
'value' => 'summary',
],
],
],
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.