field_cron

  1. drupal
    1. 7
Versions
7 field_cron()

Implements hook_cron().

Purges some deleted Field API data, if any exists.

Related topics

Code

drupal/modules/field/field.module, line 373

<?php
function field_cron() {
  $limit = variable_get('field_purge_batch_size', 10);
  field_purge_batch($limit);
}
?>