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