You are here

contribute.install in Contribute 8

Same filename and directory in other branches
  1. 6 contribute.install

Install, update and uninstall functions for the Contribute module.

File

contribute.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for the Contribute module.
 */

/**
 * Implements hook_uninstall().
 */
function contribute_install() {

  // Load contribute module after the system module and any module that
  // may want to alter the status report.
  module_set_weight('contribute', 1);
}

Functions

Namesort descending Description
contribute_install Implements hook_uninstall().