function tmgmt_demo_uninstall in Translation Management Tool 7
Implements hook_uninstall().
File
- demo/
tmgmt_demo.install, line 81 - Installation hooks for tmgmt_demo module.
Code
function tmgmt_demo_uninstall() {
// Remove the content type created by the demo module.
if (array_key_exists('translatable', node_type_get_names())) {
node_type_delete('translatable');
variable_del('node_preview_translatable');
node_types_rebuild();
menu_rebuild();
}
}