You are here

function sms_track_enable in SMS Framework 7

Same name and namespace in other branches
  1. 6.2 modules/sms_track/sms_track.module \sms_track_enable()
  2. 6 modules/sms_track/sms_track.module \sms_track_enable()

Implements hook_enable().

File

modules/sms_track/sms_track.module, line 28
Message tracking feature module for Drupal SMS Framework.

Code

function sms_track_enable() {
  if (variable_get('sms_track_archive_dir', SMS_DIR_NONE)) {
    watchdog('sms_track', 'SMS Tracking archive collector enabled');
  }
}