You are here

function tipsy_uninstall in Tipsy 8

Same name and namespace in other branches
  1. 7 tipsy.install \tipsy_uninstall()

Implements hook_uninstall().

File

./tipsy.install, line 18
Install, update and uninstall functions for the tipsy module.

Code

function tipsy_uninstall() {
  \Drupal::configFactory()
    ->getEditable('tipsy.settings')
    ->delete();
}