You are here

public function WorkflowTypeInterface::hasTransition in Drupal 8

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

Determines if a transition exists.

Parameters

string $transition_id: The transition ID.

Return value

bool TRUE if the transition exists, FALSE if not.

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

File

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

Class

WorkflowTypeInterface
An interface for Workflow type plugins.

Namespace

Drupal\workflows

Code

public function hasTransition($transition_id);