update_uninstall

Versions
6 – 7
update_uninstall()

Implement hook_uninstall().

Code

modules/update/update.install, line 19

<?php
function update_uninstall() {
  // Clear any variables that might be in use
  $variables = array(
    'update_check_frequency',
    'update_fetch_url',
    'update_last_check',
    'update_notification_threshold',
    'update_notify_emails',
    'update_max_fetch_attempts',
    'update_max_fetch_time',
  );
  foreach ($variables as $variable) {
    variable_del($variable);
  }
  menu_rebuild();
  $queue = DrupalQueue::get('update_fetch_tasks');
  $queue->deleteQueue();
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.