You are here

function uc_order_ip_anon_alter in IP Anonymize 7

Same name and namespace in other branches
  1. 8 ip_anon.inc \uc_order_ip_anon_alter()

Implements hook_ip_anon_alter() for Ubercart order module.

File

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

Code

function uc_order_ip_anon_alter(&$tables) {
  $tables['uc_orders'] = array(
    'hostname' => 'host',
    'timestamp' => 'modified',
  );
}