You are here

function googleanalytics_cron in Google Analytics 5

Same name and namespace in other branches
  1. 6.4 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 549

Code

function googleanalytics_cron() {

  // Regenerate the google analytics urchin.js or ga.js every day.
  if (time() - variable_get('googleanalytics_last_cache', 0) >= 86400) {

    // Legacy google analytics version.
    file_delete(file_directory_path() . '/googleanalytics/urchin.js');

    // New google analytics version.
    file_delete(file_directory_path() . '/googleanalytics/ga.js');
    variable_set('googleanalytics_last_cache', time());
  }
}