You are here

function statsd_user_login in StatsD 7

Same name and namespace in other branches
  1. 6 statsd.module \statsd_user_login()
  2. 7.2 statsd.module \statsd_user_login()

Implements hook_user_login().

File

./statsd.module, line 47

Code

function statsd_user_login(&$edit, $account) {
  if (!variable_get('statsd_user_events', TRUE)) {
    return;
  }
  statsd_call('user_events.successful_login');
}