You are here

comment_delete.install in Comment Delete 8

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

File

comment_delete.install
View source
<?php

/**
 * @file
 * comment_delete.install
 */

/**
 * Implements hook_install().
 */
function comment_delete_install() {
  module_set_weight('comment_delete', 1000);
}

/**
 * Ensure caches are flushed and rebuilt.
 */
function comment_delete_update_8001(&$sandbox) {
  drupal_flush_all_caches();
}

Functions

Namesort descending Description
comment_delete_install Implements hook_install().
comment_delete_update_8001 Ensure caches are flushed and rebuilt.