public function WebformPluginSettingsTrait::getSettings in Webform 8.5
Same name and namespace in other branches
- 6.x src/Plugin/WebformPluginSettingsTrait.php \Drupal\webform\Plugin\WebformPluginSettingsTrait::getSettings()
7 calls to WebformPluginSettingsTrait::getSettings()
- 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.
- DebugWebformHandler::submitForm in src/
Plugin/ WebformHandler/ DebugWebformHandler.php - Submit webform submission form.
- EmailWebformHandler::getEmailConfiguration in src/
Plugin/ WebformHandler/ EmailWebformHandler.php - Get mail configuration values.
- 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/ WebformPluginSettingsTrait.php, line 13
Class
- WebformPluginSettingsTrait
- Provides a plugin settings trait.
Namespace
Drupal\webform\PluginCode
public function getSettings() {
$configuration = $this
->getConfiguration();
return $configuration['settings'];
}