You are here

function imageblock_uninstall in Image Block 6

Same name and namespace in other branches
  1. 7 imageblock.install \imageblock_uninstall()

Implements hook_uninstall().

File

./imageblock.install, line 76
imageblock.install Contains install and update functions for Image Block module.

Code

function imageblock_uninstall() {
  drupal_uninstall_schema('imageblock');
  db_query("DELETE FROM {variable} WHERE name IN ('imageblock_max_file_size', 'imageblock_max_dimensions')");
}