You are here

function _taxonomy_menu_delete_item in Taxonomy menu 6.2

Same name and namespace in other branches
  1. 8 taxonomy_menu.database.inc \_taxonomy_menu_delete_item()
  2. 7.2 taxonomy_menu.database.inc \_taxonomy_menu_delete_item()
  3. 7 taxonomy_menu.database.inc \_taxonomy_menu_delete_item()

Delete all rows from {taxomony_menu} associated with this tid

Parameters

$vid:

$tid:

1 call to _taxonomy_menu_delete_item()
taxonomy_menu_taxonomy_menu_delete in ./taxonomy_menu.module
hook_taxonomy_menu_delete

File

./taxonomy_menu.database.inc, line 105
Database functions

Code

function _taxonomy_menu_delete_item($vid, $tid) {
  db_query('DELETE FROM {taxonomy_menu} WHERE vid = %d AND tid = %d', $vid, $tid);
}