You are here

function recently_read_uninstall in Recently Read 6

Same name and namespace in other branches
  1. 7.3 recently_read.install \recently_read_uninstall()
  2. 7 recently_read.install \recently_read_uninstall()
  3. 7.2 recently_read.install \recently_read_uninstall()

Implementation of hook_uninstall().

File

./recently_read.install, line 62
Recently read installation file. Displays a history of recently read nodes by currently logged in user.

Code

function recently_read_uninstall() {
  drupal_uninstall_schema('recently_read');
  variable_del('recently_read_node_types');
  variable_del('recently_read_max_entries');
  variable_del('recently_read_max_length');
}