You are here

function sms_track_disable in SMS Framework 6.2

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

Implement hook_disable()

File

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

Code

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