You are here

hacked.install in Hacked! 7.3

Same filename and directory in other branches
  1. 5 hacked.install
  2. 6.2 hacked.install
  3. 6 hacked.install
  4. 7.2 hacked.install

Install functions for the Hacked! module.

File

hacked.install
View source
<?php

/**
 * @file
 * Install functions for the Hacked! module.
 */

/**
 * Implementation of hook_schema().
 */

/*function hacked_schema() {
  $tables = array();

  $tables['cache_hacked'] = drupal_get_schema_unprocessed('system', 'cache');
  $tables['cache_hacked']['description'] = 'Cache table for the Hacked! module. Holds hashes for the various projects.';

  return $tables;
}*/

/**
 * Implements hook_uninstall().
 */

/*function hacked_uninstall() {
  variable_del('hacked_selected_file_hasher');
  variable_del('hacked_cvs_cmd');
  variable_del('hacked_last_report');
}*/