public function WebformHandlerBase::getSummary in Webform 8.5
Same name and namespace in other branches
- 6.x src/Plugin/WebformHandlerBase.php \Drupal\webform\Plugin\WebformHandlerBase::getSummary()
Returns a render array summarizing the configuration of the webform handler.
Return value
array A render array.
Overrides WebformHandlerInterface::getSummary
7 calls to WebformHandlerBase::getSummary()
- ActionWebformHandler::getSummary in src/
Plugin/ WebformHandler/ ActionWebformHandler.php - Returns a render array summarizing the configuration of the webform handler.
- DebugWebformHandler::getSummary in src/
Plugin/ WebformHandler/ DebugWebformHandler.php - Returns a render array summarizing the configuration of the webform handler.
- EmailWebformHandler::getMessageSummary in src/
Plugin/ WebformHandler/ EmailWebformHandler.php - Build message summary.
- EmailWebformHandler::getSummary in src/
Plugin/ WebformHandler/ EmailWebformHandler.php - Returns a render array summarizing the configuration of the webform handler.
- OptionsLimitWebformHandler::getSummary in modules/
webform_options_limit/ src/ Plugin/ WebformHandler/ OptionsLimitWebformHandler.php - Returns a render array summarizing the configuration of the webform handler.
8 methods override WebformHandlerBase::getSummary()
- ActionWebformHandler::getSummary in src/
Plugin/ WebformHandler/ ActionWebformHandler.php - Returns a render array summarizing the configuration of the webform handler.
- BrokenWebformHandler::getSummary in src/
Plugin/ WebformHandler/ BrokenWebformHandler.php - Returns a render array summarizing the configuration of the webform handler.
- DebugWebformHandler::getSummary in src/
Plugin/ WebformHandler/ DebugWebformHandler.php - Returns a render array summarizing the configuration of the webform handler.
- EmailWebformHandler::getSummary in src/
Plugin/ WebformHandler/ EmailWebformHandler.php - Returns a render array summarizing the configuration of the webform handler.
- OptionsLimitWebformHandler::getSummary in modules/
webform_options_limit/ src/ Plugin/ WebformHandler/ OptionsLimitWebformHandler.php - Returns a render array summarizing the configuration of the webform handler.
File
- src/
Plugin/ WebformHandlerBase.php, line 220
Class
- WebformHandlerBase
- Provides a base class for a webform handler.
Namespace
Drupal\webform\PluginCode
public function getSummary() {
return [
'#theme' => 'webform_handler_' . $this->pluginId . '_summary',
'#settings' => $this->configuration,
'#handler' => $this,
];
}