You are here

public function ComplexTestType::onDependencyRemoval in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/workflows/tests/modules/workflow_type_test/src/Plugin/WorkflowType/ComplexTestType.php \Drupal\workflow_type_test\Plugin\WorkflowType\ComplexTestType::onDependencyRemoval()

Informs the plugin that a dependency of the workflow will be deleted.

@todo https://www.drupal.org/node/2579743 make part of a generic interface.

Parameters

array $dependencies: An array of dependencies that will be deleted keyed by dependency type.

Return value

bool TRUE if the workflow settings have been changed, FALSE if not.

Overrides WorkflowTypeBase::onDependencyRemoval

See also

\Drupal\Core\Config\ConfigEntityInterface::onDependencyRemoval()

File

core/modules/workflows/tests/modules/workflow_type_test/src/Plugin/WorkflowType/ComplexTestType.php, line 28

Class

ComplexTestType
Test workflow type.

Namespace

Drupal\workflow_type_test\Plugin\WorkflowType

Code

public function onDependencyRemoval(array $dependencies) {

  // Always return TRUE to allow the logic in
  // \Drupal\workflows\Entity\Workflow::onDependencyRemoval() to be tested.
  return TRUE;
}