public function Checkboxes::getDefaultProperties in YAML Form 8
Only a few elements don't inherit these default properties.
Overrides OptionsBase::getDefaultProperties
See also
\Drupal\yamlform\Plugin\YamlFormElement\Textarea
\Drupal\yamlform\Plugin\YamlFormElement\YamlFormLikert
\Drupal\yamlform\Plugin\YamlFormElement\YamlFormCompositeBase
\Drupal\yamlform\Plugin\YamlFormElement\ContainerBase
1 call to Checkboxes::getDefaultProperties()
- YamlFormCheckboxesOther::getDefaultProperties in src/
Plugin/ YamlFormElement/ YamlFormCheckboxesOther.php - Only a few elements don't inherit these default properties.
1 method overrides Checkboxes::getDefaultProperties()
- YamlFormCheckboxesOther::getDefaultProperties in src/
Plugin/ YamlFormElement/ YamlFormCheckboxesOther.php - Only a few elements don't inherit these default properties.
File
- src/
Plugin/ YamlFormElement/ Checkboxes.php, line 23
Class
- Checkboxes
- Provides a 'checkboxes' element.
Namespace
Drupal\yamlform\Plugin\YamlFormElementCode
public function getDefaultProperties() {
return parent::getDefaultProperties() + [
// Options settings.
'options_display' => 'one_column',
];
}