You are here

function better_formats_uninstall in Better Formats 7

Same name and namespace in other branches
  1. 6.2 better_formats.install \better_formats_uninstall()
  2. 6 better_formats.install \better_formats_uninstall()

Implements of hook_uninstall().

File

./better_formats.install, line 25
Installs the better_formats module.

Code

function better_formats_uninstall() {

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