function bibcite_endnote_uninstall in Bibliography & Citation 2.0.x
Same name and namespace in other branches
- 8 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();
}