You are here

public function State::__construct in Drupal 10

Same name in this branch
  1. 10 core/modules/workflows/src/State.php \Drupal\workflows\State::__construct()
  2. 10 core/lib/Drupal/Core/State/State.php \Drupal\Core\State\State::__construct()
Same name and namespace in other branches
  1. 8 core/modules/workflows/src/State.php \Drupal\workflows\State::__construct()
  2. 9 core/modules/workflows/src/State.php \Drupal\workflows\State::__construct()

State constructor.

Parameters

\Drupal\workflows\WorkflowTypeInterface $workflow: The workflow the state is attached to.

string $id: The state's ID.

string $label: The state's label.

int $weight: The state's weight.

File

core/modules/workflows/src/State.php, line 50

Class

State
A value object representing a workflow state.

Namespace

Drupal\workflows

Code

public function __construct(WorkflowTypeInterface $workflow, $id, $label, $weight = 0) {
  $this->workflow = $workflow;
  $this->id = $id;
  $this->label = $label;
  $this->weight = $weight;
}