You are here

function pdf_to_imagefield_uninstall in PDF to ImageField 6

Same name and namespace in other branches
  1. 6.2 pdf_to_imagefield.install \pdf_to_imagefield_uninstall()

Implementation of hook_uninstall().

File

./pdf_to_imagefield.install, line 20
PDF to ImageField install and enable hooks.

Code

function pdf_to_imagefield_uninstall() {
  drupal_uninstall_schema('pdf_to_imagefield');
  drupal_load('module', 'content');
  content_notify('uninstall', 'pdf_to_imagefield');
}