You are here

function heartbeat_install in Heartbeat 7

Same name and namespace in other branches
  1. 6.4 heartbeat.install \heartbeat_install()
  2. 6.3 heartbeat.install \heartbeat_install()

Implementation of hook_install().

File

./heartbeat.install, line 13
Installation file for the heartbeat module. @author Jochen Stals - Menhir - www.menhir.be

Code

function heartbeat_install() {

  // Module weights in core: put heartbeat after most modules in the chain.
  // especially core modules, rules, token and pathauto

  /*db_update('system')
    ->fields(array('weight' => 50))
    ->condition('name', 'heartbeat')
    ->execute();*/
}