function auto_nodetitle_uninstall in Automatic Nodetitles 7
Same name and namespace in other branches
- 8 auto_nodetitle.install \auto_nodetitle_uninstall()
- 5 auto_nodetitle.install \auto_nodetitle_uninstall()
- 6 auto_nodetitle.install \auto_nodetitle_uninstall()
Implements hook_uninstall().
File
- ./
auto_nodetitle.install, line 21 - Installation file for the automatic nodetitle module.
Code
function auto_nodetitle_uninstall() {
foreach (node_type_get_names('names') as $type => $type_name) {
variable_del('ant_' . $type);
variable_del('ant_pattern_' . $type);
variable_del('ant_php_' . $type);
}
}