You are here

function pathauto_entity_entity_delete in Pathauto Entity 7

Implements hook_entity_delete().

File

./pathauto_entity.module, line 302
Implements custom entity type support for Pathauto module.

Code

function pathauto_entity_entity_delete($entity, $entity_type) {

  // Ensure that all entities have an uri.
  $uri = entity_uri($entity_type, $entity);
  if (isset($uri['path'])) {
    pathauto_entity_path_delete_all($entity_type, $entity);
  }
}