You are here

function closeblock_uninstall in Close Block 8

Same name and namespace in other branches
  1. 6 closeblock.install \closeblock_uninstall()
  2. 7 closeblock.install \closeblock_uninstall()

Implements hook_uninstall().

File

./closeblock.install, line 11
Install hooks for Closeblock.

Code

function closeblock_uninstall() {
  \Drupal::configFactory()
    ->getEditable('closeblock.settings')
    ->delete();
  \Drupal::configFactory()
    ->getEditable('closeBlocksIdBlocksForClosing.settings')
    ->delete();
}