public function YamlFormSignature::getFormats in YAML Form 8
Get an element's available formats.
Return value
array An associative array of formats containing name/label pairs.
Overrides YamlFormElementBase::getFormats
File
- src/
Plugin/ YamlFormElement/ YamlFormSignature.php, line 99
Class
- YamlFormSignature
- Provides a 'signature' element.
Namespace
Drupal\yamlform\Plugin\YamlFormElementCode
public function getFormats() {
return [
'raw' => $this
->t('Raw value'),
'status' => $this
->t('Raw value'),
'image' => $this
->t('Image'),
];
}