You are here

function block_tracker_uninstall in Util 6.3

Same name and namespace in other branches
  1. 7 contribs/block_tracker/block_tracker.install \block_tracker_uninstall()

Implements hook_uninstall(); Remove module variables.

File

contribs/block_tracker/block_tracker.install, line 26
Install code for Block Tracker add-on to Util.

Code

function block_tracker_uninstall() {
  $ret = array();
  db_drop_field($ret, 'blocks', 'lastused');
}