You are here

function elf_uninstall in External Links Filter 6.3

Same name and namespace in other branches
  1. 7.3 elf.install \elf_uninstall()

Implementation of hook_uninstall().

File

./elf.install, line 11
Installation and uninstallation functions.

Code

function elf_uninstall() {
  db_query("DELETE FROM {variable} WHERE name LIKE 'elf_%%'");
  cache_clear_all('variables', 'cache');
}