You are here

function webform_ip_anon_alter in IP Anonymize 7

Same name and namespace in other branches
  1. 8 ip_anon.inc \webform_ip_anon_alter()
  2. 6 ip_anon.pages.inc \webform_ip_anon_alter()

Implements hook_ip_anon_alter() for webform module.

File

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

Code

function webform_ip_anon_alter(&$tables) {
  $tables['webform_submissions'] = array(
    'hostname' => 'remote_addr',
    'timestamp' => 'submitted',
  );
}