You are here

function _taxonomy_defaults_clear_settings in Taxonomy Defaults 6.2

Same name and namespace in other branches
  1. 6 taxonomy_defaults.module \_taxonomy_defaults_clear_settings()
  2. 7 taxonomy_defaults.module \_taxonomy_defaults_clear_settings()
3 calls to _taxonomy_defaults_clear_settings()
taxonomy_defaults_node_type in ./taxonomy_defaults.module
Implementation of hook_node_type().
taxonomy_defaults_reset_submit in ./taxonomy_defaults.admin.inc
Clear all settings in the variable table
taxonomy_defaults_taxonomy in ./taxonomy_defaults.module
Implementation of hook_taxonomy().

File

./taxonomy_defaults.module, line 128
Taxonomy defaults - allows assignment of default terms to node types, either

Code

function _taxonomy_defaults_clear_settings($type, $vid) {
  variable_del("taxdef_{$type}_{$vid}_visible");
  variable_del("taxdef_{$type}_{$vid}");
}