You are here

function comment_ip_anon_alter in IP Anonymize 7

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

Implements hook_ip_anon_alter() for comment module.

File

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

Code

function comment_ip_anon_alter(&$tables) {
  $tables['comment'] = array(
    'hostname' => 'hostname',
    'timestamp' => 'changed',
  );
}