You are here

comment_box.install in Util 7

Same filename and directory in other branches
  1. 6.3 contribs/comment_box/comment_box.install

Install code for Comment Box add-on to Util.

File

contribs/comment_box/comment_box.install
View source
<?php

/**
 * @file
 * Install code for Comment Box add-on to Util.
 */
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}");
  }
}

Functions

Namesort descending Description
comment_box_uninstall @file Install code for Comment Box add-on to Util.