You are here

public function WorkflowTypeInterface::setTransitionLabel in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/workflows/src/WorkflowTypeInterface.php \Drupal\workflows\WorkflowTypeInterface::setTransitionLabel()
  2. 10 core/modules/workflows/src/WorkflowTypeInterface.php \Drupal\workflows\WorkflowTypeInterface::setTransitionLabel()

Sets a transition's label.

Parameters

string $transition_id: The transition ID.

string $label: The transition's label.

Return value

$this

Throws

\InvalidArgumentException Thrown if the transition does not exist.

1 method overrides WorkflowTypeInterface::setTransitionLabel()
WorkflowTypeBase::setTransitionLabel in core/modules/workflows/src/Plugin/WorkflowTypeBase.php
Sets a transition's label.

File

core/modules/workflows/src/WorkflowTypeInterface.php, line 307

Class

WorkflowTypeInterface
An interface for Workflow type plugins.

Namespace

Drupal\workflows

Code

public function setTransitionLabel($transition_id, $label);