You are here

function sna_blocks_uninstall in Simple Node Archive Blocks 6

Same name and namespace in other branches
  1. 7 sna_blocks.install \sna_blocks_uninstall()

Implements hook_uninstall().

File

./sna_blocks.install, line 10
Contains install and uninstall functions for Simple Node Archive.

Code

function sna_blocks_uninstall() {
  variable_del('sna_blocks_block_types');
  variable_del('sna_blocks_taxonomy_items');
  variable_del('sna_blocks_items');
  variable_del('sna_blocks_taxonomy_options');
  variable_del('sna_blocks_custom_selection');
  variable_del('sna_blocks_jquerymenu');
}