print_pdf_wkhtmltopdf.install 263 B

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