You are here

function ldap_help_uninstall in Lightweight Directory Access Protocol (LDAP) 8.3

Same name and namespace in other branches
  1. 8.2 ldap_help/ldap_help.install \ldap_help_uninstall()
  2. 7.2 ldap_help/ldap_help.install \ldap_help_uninstall()
  3. 7 ldap_help/ldap_help.install \ldap_help_uninstall()

Implements hook_uninstall().

File

ldap_help/ldap_help.install, line 11
LDAP Help Install File.

Code

function ldap_help_uninstall() {
  \Drupal::service('config.factory')
    ->getEditable('ldap_help')
    ->delete();
}