You are here

function lingotek_cron in Lingotek Translation 7.4

Same name and namespace in other branches
  1. 7.7 lingotek.module \lingotek_cron()
  2. 7.5 lingotek.module \lingotek_cron()
  3. 7.6 lingotek.module \lingotek_cron()

Implements hook_cron().

Updates the local cache of commonly used values.

File

./lingotek.module, line 2065

Code

function lingotek_cron() {

  // remove locally cached values, so they will be refreshed next time they are needed
  variable_del('lingotek_project_defaults');
  variable_del('lingotek_workflow_defaults');
  variable_del('lingotek_vaults_defaults');
  LingotekLog::trace(__METHOD__ . ' ran');
}