You are here

function bat_install in Booking and Availability Management Tools for Drupal 7

Implements hook_install()

File

./bat.install, line 11
Install, update and uninstall functions for the basic BAT module.

Code

function bat_install() {
  $docs_path = 'http://docs.roomify.us';
  drupal_set_message(t('Thanks for installing BAT! Checkout the Roomify BAT <a href="@DOCS_LINK">documentation</a> for information on how to fully configure BAT.', array(
    '@DOCS_LINK' => url($docs_path),
  )));
}