You are here

function document_uninstall in Document 8.x

Same name and namespace in other branches
  1. 6 document.install \document_uninstall()
  2. 7 document.install \document_uninstall()

File

./document.install, line 56

Code

function document_uninstall() {
  variable_del('document_path');
  variable_del('document_allow_external');
  variable_del('document_allow_websearch');
  variable_del('document_publish_email');
  variable_del('document_publish_subject');
  variable_del('document_publish_body');
  variable_del('document_path');
  variable_del('document_vocabulary');
  $instance = field_info_instance('node', 'document_types', 'document');
  field_delete_instance($instance, TRUE);
  node_type_delete('document');
}