You are here

function ip_anon_cron in IP Anonymize 7

Same name and namespace in other branches
  1. 8 ip_anon.module \ip_anon_cron()
  2. 5 ip_anon.module \ip_anon_cron()
  3. 6 ip_anon.module \ip_anon_cron()

Implements hook_cron().

File

./ip_anon.module, line 11
Implements an IP address retention policy.

Code

function ip_anon_cron() {
  if (variable_get('ip_anon_policy', 0)) {
    module_load_include('inc', 'ip_anon');
    ip_anon_scrub();
  }
}