You are here

function seo_checklist_uninstall in SEO Checklist 8.4

Same name and namespace in other branches
  1. 7.4 seo_checklist.install \seo_checklist_uninstall()
  2. 5.0.x seo_checklist.install \seo_checklist_uninstall()

Implements hook_uninstall().

File

./seo_checklist.install, line 11
Install, update and uninstall functions for the seo_checklist module.

Code

function seo_checklist_uninstall() {
  \Drupal::configFactory()
    ->getEditable("checklistapi.progress.seo_checklist")
    ->delete();
}