public function Email::getDefaultProperties in YAML Form 8
Only a few elements don't inherit these default properties.
Overrides YamlFormElementBase::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 Email::getDefaultProperties()
- YamlFormEmailConfirm::getDefaultProperties in src/
Plugin/ YamlFormElement/ YamlFormEmailConfirm.php - Only a few elements don't inherit these default properties.
1 method overrides Email::getDefaultProperties()
- YamlFormEmailConfirm::getDefaultProperties in src/
Plugin/ YamlFormElement/ YamlFormEmailConfirm.php - Only a few elements don't inherit these default properties.
File
- src/
Plugin/ YamlFormElement/ Email.php, line 22
Class
- Provides a 'email' element.
Namespace
Drupal\yamlform\Plugin\YamlFormElementCode
public function getDefaultProperties() {
return parent::getDefaultProperties() + [
// Form validation.
'size' => '',
'maxlength' => '',
'placeholder' => '',
];
}