You are here

radioactivity_comment.install in Radioactivity 6

Same filename and directory in other branches
  1. 5 plugins/radioactivity_comment.install

Comment radioactivity install hooks

File

plugins/radioactivity_comment.install
View source
<?php

/**
 * @file
 * Comment radioactivity install hooks
 */
function radioactivity_comment_install() {

  // no install actions required
}
function radioactivity_comment_uninstall() {
  if (db_table_exists('radioactivity')) {
    db_query("DELETE FROM {radioactivity} WHERE class='comment'");
  }
}

Functions

Namesort descending Description
radioactivity_comment_install @file Comment radioactivity install hooks
radioactivity_comment_uninstall