You are here

function date_uninstall in Date 6

Same name and namespace in other branches
  1. 5.2 date/date.install \date_uninstall()
  2. 5 date.install \date_uninstall()
  3. 6.2 date/date.install \date_uninstall()

Implementation of hook_uninstall().

File

date/date.install, line 34

Code

function date_uninstall() {
  date_install_load();
  content_notify('uninstall', 'date');
  $ret = array();

  // Empty the date caches.
  date_clear_all(TRUE);
  return $ret;
}