public function State::__construct in Drupal 9
Same name in this branch
- 9 core/modules/workflows/src/State.php \Drupal\workflows\State::__construct()
- 9 core/lib/Drupal/Core/State/State.php \Drupal\Core\State\State::__construct()
Same name and namespace in other branches
- 8 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\workflowsCode
public function __construct(WorkflowTypeInterface $workflow, $id, $label, $weight = 0) {
$this->workflow = $workflow;
$this->id = $id;
$this->label = $label;
$this->weight = $weight;
}