You are here

function pdf_using_mpdf_uninstall in PDF using mPDF 8.2

Same name and namespace in other branches
  1. 8 pdf_using_mpdf.install \pdf_using_mpdf_uninstall()
  2. 7.2 pdf_using_mpdf.install \pdf_using_mpdf_uninstall()
  3. 7 pdf_using_mpdf.install \pdf_using_mpdf_uninstall()

Implements hook_uninstall().

File

./pdf_using_mpdf.install, line 8

Code

function pdf_using_mpdf_uninstall() {
  \Drupal::configFactory()
    ->getEditable('pdf_using_mpdf.settings')
    ->delete();
  \Drupal::configFactory()
    ->getEditable('core.entity_view_mode.node.pdf_using_mpdf')
    ->delete();
}