You are here

function tablesorter_uninstall in Tablesorter 3.0.x

Same name and namespace in other branches
  1. 8 tablesorter.install \tablesorter_uninstall()
  2. 7.2 tablesorter.install \tablesorter_uninstall()
  3. 7 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();
}