You are here

public function WebformHandlerBase::getSummary in Webform 8.5

Same name and namespace in other branches
  1. 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.

... See full list

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.

... See full list

File

src/Plugin/WebformHandlerBase.php, line 220

Class

WebformHandlerBase
Provides a base class for a webform handler.

Namespace

Drupal\webform\Plugin

Code

public function getSummary() {
  return [
    '#theme' => 'webform_handler_' . $this->pluginId . '_summary',
    '#settings' => $this->configuration,
    '#handler' => $this,
  ];
}