You are here

function auto_entitylabel_uninstall in Automatic Entity Label 8.3

Same name and namespace in other branches
  1. 8.2 auto_entitylabel.install \auto_entitylabel_uninstall()
  2. 7 auto_entitylabel.install \auto_entitylabel_uninstall()

Implements hook_uninstall().

File

./auto_entitylabel.install, line 87
Install, update and uninstall functions for the Automatic Entity Labels.

Code

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