function signature_forum_uninstall in Signatures for Forums 7
Same name and namespace in other branches
- 5.2 signature_forum.install \signature_forum_uninstall()
- 5 signature_forum.install \signature_forum_uninstall()
- 6 signature_forum.install \signature_forum_uninstall()
Implementation of hook_uninstall().
File
- ./
signature_forum.install, line 73 - Installs, updates and uninstalls signature_forum module.
Code
function signature_forum_uninstall() {
_signature_forum_update_schema();
variable_del('signature_forum_short_content_action');
variable_del('signature_forum_short_content_length');
variable_del('signature_forum_short_content_format');
variable_del('signature_forum_short_content_exempt_roles');
variable_del('signature_forum_show_once_options');
variable_del('signature_forum_show_once_exempt_roles');
variable_del('signature_forum_defaults_mode');
variable_del('signature_forum_defaults_global');
variable_del('signature_forum_max_characters');
variable_del('signature_forum_max_lines');
}