You are here

node_comment_block.install in Node Comment Block 7.2

Same filename and directory in other branches
  1. 7 node_comment_block.install

Installation and uninstallation functions.

File

node_comment_block.install
View source
<?php

/**
 * @file
 * Installation and uninstallation functions.
 */

/**
 * Implements hook_uninstall().
 */
function node_comment_block_uninstall() {

  // Delete created variables.
  variable_del('node_comment_block_show_form_node_comments');
  variable_del('node_comment_block_show_form_node_comments_secondary');
  variable_del('node_comment_block_show_comments_node_comments');
  variable_del('node_comment_block_show_comments_node_comments_secondary');
  variable_del('node_comment_block_show_anonymous_node_comments');
  variable_del('node_comment_block_show_anonymous_node_comments_secondary');
}

Functions