You are here

copyprevention.install in Copy Prevention 8

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

Install and uninstall functions for Copy Prevention module.

File

copyprevention.install
View source
<?php

/**
 * @file
 * Install and uninstall functions for Copy Prevention module.
 */

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

Functions

Namesort descending Description
copyprevention_uninstall Implements hook_uninstall().