function State::__construct
Same name in this branch
- 8.9.x core/lib/Drupal/Core/State/State.php \Drupal\Core\State\State::__construct()
Same name in other branches
- 9 core/modules/workflows/src/State.php \Drupal\workflows\State::__construct()
- 9 core/lib/Drupal/Core/State/State.php \Drupal\Core\State\State::__construct()
- 10 core/modules/workflows/src/State.php \Drupal\workflows\State::__construct()
- 10 core/lib/Drupal/Core/State/State.php \Drupal\Core\State\State::__construct()
- 11.x core/modules/workflows/src/State.php \Drupal\workflows\State::__construct()
- 11.x core/lib/Drupal/Core/State/State.php \Drupal\Core\State\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;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.