public function TestEntityMappingWebformHandler::getSummary in Webform 8.5
Same name and namespace in other branches
- 6.x tests/modules/webform_test_handler/src/Plugin/WebformHandler/TestEntityMappingWebformHandler.php \Drupal\webform_test_handler\Plugin\WebformHandler\TestEntityMappingWebformHandler::getSummary()
Returns a render array summarizing the configuration of the webform handler.
Return value
array A render array.
Overrides WebformHandlerBase::getSummary
File
- tests/
modules/ webform_test_handler/ src/ Plugin/ WebformHandler/ TestEntityMappingWebformHandler.php, line 43
Class
- TestEntityMappingWebformHandler
- Webform submission entity mapping test handler.
Namespace
Drupal\webform_test_handler\Plugin\WebformHandlerCode
public function getSummary() {
return [
'#markup' => Yaml::encode($this->configuration),
'#prefix' => '<pre>',
'#suffix' => '<pre>',
];
}