You are here

function merci_install in MERCI (Manage Equipment Reservations, Checkout and Inventory) 7.2

Same name and namespace in other branches
  1. 6.2 merci.install \merci_install()
  2. 6 merci.install \merci_install()

Implements hook_install().

File

./merci.install, line 12
merci Installer / Uninstaller

Code

function merci_install() {

  // Core doesn't load the .module file on install for some reason,
  // so load it here manually.
  drupal_load('module', 'merci');

  // Create tables.
  // TODO The drupal_(un)install_schema functions are called automatically in D7.
  // drupal_install_schema('merci')
}