You are here

function nofollowlist_uninstall in Nofollow List 7

File

./nofollowlist.install, line 51

Code

function nofollowlist_uninstall() {
  db_delete('filter')
    ->condition('module', 'nofollowlist')
    ->condition('name', 'filter_nofollow')
    ->execute();
  variable_del('nofollowlist_option');
  variable_del('nofollowlist_hosts');
}