You are here

public function StateInterface::canTransitionTo in Drupal 10

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

Determines if the state can transition to the provided state ID.

Parameters

$to_state_id: The state to transition to.

Return value

bool TRUE if the state can transition to the provided state ID. FALSE, if not.

File

core/modules/workflows/src/StateInterface.php, line 52

Class

StateInterface
An interface for state value objects.

Namespace

Drupal\workflows

Code

public function canTransitionTo($to_state_id);