function commerce_order_ip_anon_alter in IP Anonymize 7
Same name and namespace in other branches
- 8 ip_anon.inc \commerce_order_ip_anon_alter()
Implements hook_ip_anon_alter() for Commerce order module.
File
- ./
ip_anon.inc, line 121 - Page callbacks and utility functions for IP Anonymize module.
Code
function commerce_order_ip_anon_alter(&$tables) {
$tables['commerce_order'] = array(
'hostname' => 'hostname',
'timestamp' => 'changed',
);
}