You are here

function flatcomments_uninstall in Flatcomments 7.2

Implementation of hook_uninstall().

File

./flatcomments.install, line 11
Install, update and uninstall functions for the flatcomments module.

Code

function flatcomments_uninstall() {

  // Delete settings from varible table.
  db_delete('variable')
    ->condition('name', 'flatcomments_%', 'LIKE')
    ->execute();
}