You are here

function simple_sitemap_entity_bundle_delete in Simple XML sitemap 8.2

Same name and namespace in other branches
  1. 8.3 simple_sitemap.module \simple_sitemap_entity_bundle_delete()
  2. 4.x simple_sitemap.module \simple_sitemap_entity_bundle_delete()

Implements hook_entity_bundle_delete().

Removes settings of the removed bundle.

Parameters

string $entity_type_id:

string $bundle:

File

./simple_sitemap.module, line 208
Main module file containing hooks.

Code

function simple_sitemap_entity_bundle_delete($entity_type_id, $bundle) {
  simple_sitemap_delete_bundle_config($entity_type_id, $bundle);
}