You are here

public function WorkflowTypeBase::hasTransition in Drupal 10

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

File

core/modules/workflows/src/Plugin/WorkflowTypeBase.php, line 329

Class

WorkflowTypeBase
A base class for Workflow type plugins.

Namespace

Drupal\workflows\Plugin

Code

public function hasTransition($transition_id) {
  return isset($this->configuration['transitions'][$transition_id]);
}