comment_goodness.install in Comment goodness 7
Provide configurations for the standard Drupal comment display and creation forms.
File
comment_goodness.installView source
<?php
/**
* @file
* Provide configurations for the standard Drupal comment display and creation
* forms.
*/
/**
* Implements hook_uninstall().
*/
function comment_goodness_uninstall() {
db_delete('variable')
->condition('name', 'comment_goodness_%', 'like')
->execute();
}
Functions
Name | Description |
---|---|
comment_goodness_uninstall | Implements hook_uninstall(). |