print_pdf_dompdf.install 300 B

12345678910111213141516
  1. <?php
  2. /**
  3. * @file
  4. * Install, update and uninstall functions for the print_pdf_dompdf module.
  5. *
  6. * @ingroup print
  7. */
  8. /**
  9. * Implements hook_uninstall().
  10. */
  11. function print_pdf_dompdf_uninstall() {
  12. variable_del('print_pdf_dompdf_unicode');
  13. variable_del('print_pdf_dompdf_font_subsetting');
  14. }