You are here

function promote_disable_uninstall in Promote Disable 8

Same name and namespace in other branches
  1. 7 promote_disable.install \promote_disable_uninstall()

Implements hook_uninstall().

File

./promote_disable.install, line 11
Contains an uninstall function for Promote Disable.

Code

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