You are here

content_lock_timeout.install in Content locking (anti-concurrent editing) 8.2

Remove config on uninstall.

File

modules/content_lock_timeout/content_lock_timeout.install
View source
<?php

/**
 * @file
 * Remove config on uninstall.
 */

/**
 * Implements hook_uninstall().
 */
function content_lock_timeout_uninstall() {
  \Drupal::service('config.factory')
    ->getEditable('content_lock_timeout.settings')
    ->delete();
}

Functions