function webform_ip_anon_alter in IP Anonymize 6
Same name and namespace in other branches
- 8 ip_anon.inc \webform_ip_anon_alter()
- 7 ip_anon.inc \webform_ip_anon_alter()
Implements hook_ip_anon_alter() for webform module.
File
- ./
ip_anon.pages.inc, line 71 - 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',
);
}