You are here

function bibcite_endnote_uninstall in Bibliography & Citation 8

Same name and namespace in other branches
  1. 2.0.x modules/bibcite_endnote/bibcite_endnote.install \bibcite_endnote_uninstall()

Implements hook_uninstall().

File

modules/bibcite_endnote/bibcite_endnote.install, line 64
Module installation hooks implementation.

Code

function bibcite_endnote_uninstall() {
  Drupal::configFactory()
    ->getEditable('bibcite_entity.mapping.endnote7')
    ->delete();
  Drupal::configFactory()
    ->getEditable('bibcite_entity.mapping.endnote8')
    ->delete();
  Drupal::configFactory()
    ->getEditable('bibcite_entity.mapping.tagged')
    ->delete();
}