You are here

function bibcite_bibtex_uninstall in Bibliography & Citation 8

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

Implements hook_uninstall().

File

modules/bibcite_bibtex/bibcite_bibtex.install, line 44
Module installation hooks implementation.

Code

function bibcite_bibtex_uninstall() {
  Drupal::configFactory()
    ->getEditable('bibcite_entity.mapping.bibtex')
    ->delete();
}