You are here

public function WorkflowTypeInterface::addTransition in Drupal 8

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

Adds a transition to the workflow.

Parameters

string $id: The transition ID.

string $label: The transition's label.

array $from_state_ids: The state IDs to transition from.

string $to_state_id: The state ID to transition to.

Return value

$this

Throws

\InvalidArgumentException Thrown if either state does not exist.

1 method overrides WorkflowTypeInterface::addTransition()
WorkflowTypeBase::addTransition in core/modules/workflows/src/Plugin/WorkflowTypeBase.php
Adds a transition to the workflow.

File

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

Class

WorkflowTypeInterface
An interface for Workflow type plugins.

Namespace

Drupal\workflows

Code

public function addTransition($id, $label, array $from_state_ids, $to_state_id);