You are here

tablesorter.install in Tablesorter 8

Same filename and directory in other branches
  1. 7.2 tablesorter.install
  2. 7 tablesorter.install
  3. 3.0.x tablesorter.install

Tablesorter installation.

File

tablesorter.install
View source
<?php

/**
 * @file
 * Tablesorter installation.
 */

/**
 * Implements hook_uninstall().
 */
function tablesorter_uninstall() {

  // Using \Drupal::configFactory()
  \Drupal::configFactory()
    ->getEditable('tablesorter.settings')
    ->delete();
}

Functions

Namesort descending Description
tablesorter_uninstall Implements hook_uninstall().