You are here

function password_eye_uninstall in Password Eye 8

Same name and namespace in other branches
  1. 2.0.x password_eye.install \password_eye_uninstall()

Implements hook_uninstall().

File

./password_eye.install, line 21
Contains \Drupal\password_eye\password_eye.install.

Code

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