You are here

public function WorkflowTypeInterface::hasTransitionFromStateToState in Drupal 8

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

Determines if a transition from state to state exists.

Parameters

string $from_state_id: The state ID to transition from.

string $to_state_id: The state ID to transition to.

Return value

bool TRUE if the transition exists, FALSE if not.

1 method overrides WorkflowTypeInterface::hasTransitionFromStateToState()
WorkflowTypeBase::hasTransitionFromStateToState in core/modules/workflows/src/Plugin/WorkflowTypeBase.php
Determines if a transition from state to state exists.

File

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

Class

WorkflowTypeInterface
An interface for Workflow type plugins.

Namespace

Drupal\workflows

Code

public function hasTransitionFromStateToState($from_state_id, $to_state_id);