You are here

function elf_uninstall in External Links Filter 7.3

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

Implement 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');
}