You are here

comment_delete.install in Comment Delete 6

Same filename and directory in other branches
  1. 8 comment_delete.install
  2. 7 comment_delete.install

File

comment_delete.install
View source
<?php

/**
 * Implementation of hook_install().
 */
function comment_delete_install() {
  db_query("UPDATE {system} SET weight = 1 WHERE name = 'comment_delete'");
}

/**
 * Implementation of hook_uninstall().
 */
function comment_delete_uninstall() {
}

Functions

Namesort descending Description
comment_delete_install Implementation of hook_install().
comment_delete_uninstall Implementation of hook_uninstall().