function node_comment_block_uninstall in Node Comment Block 7
Same name and namespace in other branches
- 7.2 node_comment_block.install \node_comment_block_uninstall()
Implements hook_uninstall().
File
- ./
node_comment_block.install, line 10 - Installation and uninstallation functions.
Code
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');
}