You are here

function attachment_links_uninstall in Attachment Links 7

Same name and namespace in other branches
  1. 6 attachment_links.install \attachment_links_uninstall()

Implements hook_uninstall().

File

./attachment_links.install, line 11
attachment_links.install Provides install, uninstall, and update hooks.

Code

function attachment_links_uninstall() {

  // Remove variables used by this module.
  db_delete('variable')
    ->condition('name', 'attachment_links%', 'LIKE')
    ->execute();
}