You are here

function workflow_devel_entity_predelete in Workflow 8

@inheritdoc

File

modules/workflow_devel/workflow_devel.module, line 178
Development tools for Workflow.

Code

function workflow_devel_entity_predelete(EntityInterface $entity) {
  if (substr($entity
    ->getEntityTypeId(), 0, 8) == 'workflow') {
    workflow_debug(__FILE__, __FUNCTION__, __LINE__, 'predelete', $entity
      ->getEntityTypeId());
  }
  hook_entity_predelete($entity);
}