You are here

function taxonomy_orphanage_cron in Taxonomy Orphanage 7

Implements hook_cron().

File

./taxonomy_orphanage.module, line 29
Module file.

Code

function taxonomy_orphanage_cron() {
  if (variable_get('taxonomy_orphanage_cron_roundup', TRUE)) {

    // It's probably best to keep the limit low in case cron is being executed
    // by the web server.
    taxonomy_orphanage_roundup(FALSE, variable_get('taxonomy_orphanage_cron_limit', 50), FALSE);
  }
}