function seo_checker_uninstall in SEO Compliance Checker 6.2
Same name and namespace in other branches
- 6 seo_checker.install \seo_checker_uninstall()
Implementation of hook_uninstall().
File
- ./
seo_checker.install, line 40 - Installer for the SEO Compliance Checker
Code
function seo_checker_uninstall() {
/* delete variables for types */
$types = node_get_types();
foreach ($types as $type) {
variable_del('seo_checker_' . $type->type);
}
variable_del('seo_checker_allow_failures');
}