function custom_formatters_uninstall in Custom Formatters 6
Same name and namespace in other branches
- 7.2 custom_formatters.install \custom_formatters_uninstall()
Implements hook_uninstall().
File
- ./
custom_formatters.install, line 73 - Install, update and uninstall functions for the Custom Formatters module.
Code
function custom_formatters_uninstall() {
drupal_uninstall_schema('custom_formatters');
variable_del('custom_formatters_settings');
}