public function WorkflowTypeInterface::hasTransition in Drupal 9
Same name and namespace in other branches
- 8 core/modules/workflows/src/WorkflowTypeInterface.php \Drupal\workflows\WorkflowTypeInterface::hasTransition()
- 10 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 229
Class
- WorkflowTypeInterface
- An interface for Workflow type plugins.
Namespace
Drupal\workflowsCode
public function hasTransition($transition_id);