You are here

public function WorkflowTypeBase::getConfiguration in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/workflows/src/Plugin/WorkflowTypeBase.php \Drupal\workflows\Plugin\WorkflowTypeBase::getConfiguration()

Gets this plugin's configuration.

Return value

array An array of this plugin's configuration.

Overrides ConfigurableInterface::getConfiguration

1 call to WorkflowTypeBase::getConfiguration()
ContentModeration::getConfiguration in core/modules/content_moderation/src/Plugin/WorkflowType/ContentModeration.php
Gets this plugin's configuration.
1 method overrides WorkflowTypeBase::getConfiguration()
ContentModeration::getConfiguration in core/modules/content_moderation/src/Plugin/WorkflowType/ContentModeration.php
Gets this plugin's configuration.

File

core/modules/workflows/src/Plugin/WorkflowTypeBase.php, line 63

Class

WorkflowTypeBase
A base class for Workflow type plugins.

Namespace

Drupal\workflows\Plugin

Code

public function getConfiguration() {
  return $this->configuration;
}