You are here

function uc_catalog_taxonomy_term_delete in Ubercart 7.3

Implements hook_taxonomy_term_delete().

File

uc_catalog/uc_catalog.module, line 213
Ubercart Catalog module.

Code

function uc_catalog_taxonomy_term_delete($term) {
  path_delete(array(
    'source' => uc_catalog_path($term),
  ));
}