You are here

function choice_uninstall in Quiz 6.6

Implementation of hook_uninstall()

File

question_types/choice/choice.install, line 254
Sponsored by: Norwegian Centre for Telemedicine Code: falcon

Code

function choice_uninstall() {
  drupal_uninstall_schema('choice');
  cache_clear_all('variables', 'cache');
  drupal_set_message(t("The Choice module has been uninstalled. Choice nodes may still exist, but they will not function properly."));
}