RequiredStateTestType.php

Same filename and directory in other branches
  1. 8.9.x core/modules/workflows/tests/modules/workflow_type_test/src/Plugin/WorkflowType/RequiredStateTestType.php
  2. 10 core/modules/workflows/tests/modules/workflow_type_test/src/Plugin/WorkflowType/RequiredStateTestType.php
  3. 11.x core/modules/workflows/tests/modules/workflow_type_test/src/Plugin/WorkflowType/RequiredStateTestType.php

Namespace

Drupal\workflow_type_test\Plugin\WorkflowType

File

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

View source
<?php

namespace Drupal\workflow_type_test\Plugin\WorkflowType;

use Drupal\Core\StringTranslation\StringTranslationTrait;
use Drupal\workflows\Plugin\WorkflowTypeBase;

/**
 * Test workflow type.
 *
 * @WorkflowType(
 *   id = "workflow_type_required_state_test",
 *   label = @Translation("Required State Type Test"),
 *   required_states = {
 *     "fresh",
 *     "rotten",
 *   }
 * )
 */
class RequiredStateTestType extends WorkflowTypeBase {
    use StringTranslationTrait;
    
    /**
     * {@inheritdoc}
     */
    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',
                    ],
                ],
            ],
        ];
    }

}

Classes

Title Deprecated Summary
RequiredStateTestType Test workflow type.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.