You are here

function uptolike_uninstall in Uptolike share buttons 7

Implements hook_uninstall().

File

./uptolike.install, line 71
Install and uninstall functions for Uptolike module.

Code

function uptolike_uninstall() {

  // Delete module variables.
  db_delete('variable')
    ->condition('name', 'uptolike_%', 'LIKE')
    ->execute();
}