You are here

function comment_box_uninstall in Util 7

Same name and namespace in other branches
  1. 6.3 contribs/comment_box/comment_box.install \comment_box_uninstall()

@file Install code for Comment Box add-on to Util.

File

contribs/comment_box/comment_box.install, line 7
Install code for Comment Box add-on to Util.

Code

function comment_box_uninstall() {
  variable_del('comment_box_show_roles');
  variable_del('comment_box_show_perms');
  $types = node_type_get_names();
  foreach ($types as $type => $name) {
    variable_del("comment_box_size_{$type}");
  }
}