You are here

function googleanalytics_cron in Google Analytics 6.4

Same name and namespace in other branches
  1. 5 googleanalytics.module \googleanalytics_cron()
  2. 6 googleanalytics.module \googleanalytics_cron()
  3. 6.2 googleanalytics.module \googleanalytics_cron()
  4. 6.3 googleanalytics.module \googleanalytics_cron()
  5. 7.2 googleanalytics.module \googleanalytics_cron()
  6. 7 googleanalytics.module \googleanalytics_cron()

Implementation of hook_cron().

File

./googleanalytics.module, line 414
Drupal Module: Google Analytics

Code

function googleanalytics_cron() {

  // Regenerate the tracking code file every day.
  // Regenerate the tracking code file every day.
  if (time() - variable_get('googleanalytics_last_cache', 0) >= 86400 && variable_get('googleanalytics_cache', 0)) {
    _googleanalytics_cache('https://www.google-analytics.com/analytics.js', TRUE);
    variable_set('googleanalytics_last_cache', time());
  }
}