You are here

customerror.install in Customerror 5

Same filename and directory in other branches
  1. 6 customerror.install
  2. 7 customerror.install

File

customerror.install
View source
<?php

function customerror_uninstall() {
  db_query("DELETE FROM {variable} WHERE name LIKE 'customerror_%'");
  foreach (_customerror_enum_errors() as $code => $desc) {
    if (variable_get('site_' . $code, '') == 'customerror/' . $code) {
      variable_del('site_' . $code, '');
    }
  }
}

Functions