You are here

public function RequiredStateTestType::defaultConfiguration in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/workflows/tests/modules/workflow_type_test/src/Plugin/WorkflowType/RequiredStateTestType.php \Drupal\workflow_type_test\Plugin\WorkflowType\RequiredStateTestType::defaultConfiguration()
  2. 9 core/modules/workflows/tests/modules/workflow_type_test/src/Plugin/WorkflowType/RequiredStateTestType.php \Drupal\workflow_type_test\Plugin\WorkflowType\RequiredStateTestType::defaultConfiguration()

Gets default configuration for this plugin.

Return value

array An associative array with the default configuration.

Overrides WorkflowTypeBase::defaultConfiguration

File

core/modules/workflows/tests/modules/workflow_type_test/src/Plugin/WorkflowType/RequiredStateTestType.php, line 27

Class

RequiredStateTestType
Test workflow type.

Namespace

Drupal\workflow_type_test\Plugin\WorkflowType

Code

public function defaultConfiguration() {
  return [
    'states' => [
      'fresh' => [
        'label' => 'Fresh',
        'weight' => 0,
      ],
      'rotten' => [
        'label' => 'Rotten',
        'weight' => 1,
      ],
    ],
    'transitions' => [
      'rot' => [
        'label' => 'Rot',
        'to' => 'rotten',
        'weight' => 0,
        'from' => [
          'fresh',
        ],
      ],
    ],
  ];
}