You are here

link_css.install in Link CSS 8

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

Install, update and uninstall functions for Link CSS module.

File

link_css.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for Link CSS module.
 */

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

Functions

Namesort descending Description
link_css_uninstall Implements hook_uninstall().