function comment_goodness_uninstall in Comment goodness 7
Implements hook_uninstall().
File
- ./
comment_goodness.install, line 12 - Provide configurations for the standard Drupal comment display and creation forms.
Code
function comment_goodness_uninstall() {
db_delete('variable')
->condition('name', 'comment_goodness_%', 'like')
->execute();
}