function votingapi_ip_anon_alter in IP Anonymize 7
Same name and namespace in other branches
- 8 ip_anon.inc \votingapi_ip_anon_alter()
Implements hook_ip_anon_alter() for Voting API module.
File
- ./
ip_anon.inc, line 192 - Page callbacks and utility functions for IP Anonymize module.
Code
function votingapi_ip_anon_alter(&$tables) {
$tables['votingapi_vote'] = array(
'hostname' => 'vote_source',
'timestamp' => 'timestamp',
);
}