public function TestYamlFormHandler::defaultConfiguration in YAML Form 8
Gets default configuration for this plugin.
Return value
array An associative array with the default configuration.
Overrides YamlFormHandlerBase::defaultConfiguration
File
- tests/
modules/ yamlform_test/ src/ Plugin/ YamlFormHandler/ TestYamlFormHandler.php, line 27
Class
- TestYamlFormHandler
- Form submission test handler.
Namespace
Drupal\yamlform_test\Plugin\YamlFormHandlerCode
public function defaultConfiguration() {
return [
'message' => 'One two one two this is just a test',
];
}