public function WebformHandlerBase::getConfiguration in Webform 8.5
Same name and namespace in other branches
- 6.x src/Plugin/WebformHandlerBase.php \Drupal\webform\Plugin\WebformHandlerBase::getConfiguration()
Gets this plugin's configuration.
Return value
array An array of this plugin's configuration.
Overrides ConfigurableInterface::getConfiguration
File
- src/
Plugin/ WebformHandlerBase.php, line 460
Class
- WebformHandlerBase
- Provides a base class for a webform handler.
Namespace
Drupal\webform\PluginCode
public function getConfiguration() {
return [
'id' => $this
->getPluginId(),
'label' => $this
->getLabel(),
'notes' => $this
->getNotes(),
'handler_id' => $this
->getHandlerId(),
'status' => $this
->getStatus(),
'conditions' => $this
->getConditions(),
'weight' => $this
->getWeight(),
'settings' => $this->configuration,
];
}