You are here

function _nodewords_delete in Nodewords: D6 Meta Tags 5

Delete tags from table

5 calls to _nodewords_delete()
nodewords_nodeapi in ./nodewords.module
Implementation of hook_nodeapi().
nodewords_panels_handler in ./nodewords.module
Handling of edit/delete form for panels.
nodewords_panels_page_handler in ./nodewords.module
Handling of edit/delete form for panels (v2).
nodewords_taxonomy in ./nodewords.module
Implementation of hook_taxonomy().
nodewords_views_handler in ./nodewords.module
Handling of edit/delete form for views.

File

./nodewords.module, line 645
Assign META tags to nodes, vocabularies, terms and pages.

Code

function _nodewords_delete($type, $id) {
  return db_query("DELETE FROM {nodewords} WHERE type = '%s' AND id = '%s'", $type, $id);
}