function feeds_taxonomy_term_delete in Feeds 7
Implements hook_taxonomy_delete().
Related topics
File
- ./
feeds.module, line 497 - Feeds - basic API functions and hook implementations.
Code
function feeds_taxonomy_term_delete($term) {
db_delete('feeds_term_item')
->condition('tid', $term->tid)
->execute();
}