You are here

ajax_comments.install in AJAX Comments 7

Same filename and directory in other branches
  1. 5 ajax_comments.install
  2. 6 ajax_comments.install

File

ajax_comments.install
View source
<?php

/**
 * Implements hook_uninstall().
 */
function ajax_comments_uninstall() {
  variable_del('ajax_comments_node_types');
  variable_del('ajax_comments_notify');
  variable_del('ajax_comments_disable_scroll');
}

/**
 * Remove "View modes" settings.
 */
function ajax_comments_update_7100(&$sandbox) {
  variable_del('ajax_comments_view_modes');
}

Functions

Namesort descending Description
ajax_comments_uninstall Implements hook_uninstall().
ajax_comments_update_7100 Remove "View modes" settings.