You are here

comment_goodness.install in Comment goodness 7

Provide configurations for the standard Drupal comment display and creation forms.

File

comment_goodness.install
View 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

Namesort descending Description
comment_goodness_uninstall Implements hook_uninstall().