You are here

function tablesorter_uninstall in Tablesorter 8

Same name and namespace in other branches
  1. 7.2 tablesorter.install \tablesorter_uninstall()
  2. 7 tablesorter.install \tablesorter_uninstall()
  3. 3.0.x tablesorter.install \tablesorter_uninstall()

Implements hook_uninstall().

File

./tablesorter.install, line 11
Tablesorter installation.

Code

function tablesorter_uninstall() {

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