You are here

function copyprevention_uninstall in Copy Prevention 8

Same name and namespace in other branches
  1. 7 copyprevention.install \copyprevention_uninstall()

Implements hook_uninstall().

File

./copyprevention.install, line 11
Install and uninstall functions for Copy Prevention module.

Code

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