node_comment_block.install in Node Comment Block 7
Same filename and directory in other branches
Installation and uninstallation functions.
File
node_comment_block.installView 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_comments_node_comments');
  variable_del('node_comment_block_show_form_node_comments_secondary');
  variable_del('node_comment_block_show_comments_node_comments_secondary');
}Functions
| 
            Name | 
                  Description | 
|---|---|
| node_comment_block_uninstall | Implements hook_uninstall(). |