function better_comments_uninstall in Better Comments 7
Same name and namespace in other branches
- 7.2 better_comments.install \better_comments_uninstall()
Implements hook_uninstall().
File
- ./
better_comments.install, line 10 - Better Comments provides option to configure the comment system.
Code
function better_comments_uninstall() {
variable_del('better_comments_subject');
variable_del('better_comments_author');
variable_del('better_comments_body_title');
variable_del('better_comments_picture');
variable_del('better_comments_text_placeholder');
variable_del('better_comments_text_filters');
variable_del('better_comments_preview');
}