function 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;
}

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