You are here

promote_disable.install in Promote Disable 8

Same filename and directory in other branches
  1. 7 promote_disable.install

Contains an uninstall function for Promote Disable.

File

promote_disable.install
View source
<?php

/**
 * @file
 * Contains an uninstall function for Promote Disable.
 */

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

Functions

Namesort descending Description
promote_disable_uninstall Implements hook_uninstall().