You are here

function user_stats_ip_anon_alter in IP Anonymize 7

Implements hook_ip_anon_alter() for user_stats module.

File

./ip_anon.inc, line 182
Page callbacks and utility functions for IP Anonymize module.

Code

function user_stats_ip_anon_alter(&$tables) {
  $tables['user_stats_ips'] = array(
    'hostname' => 'ip_address',
    'timestamp' => 'first_seen_timestamp',
  );
}