field_cron

Versions
7
field_cron()

Implements hook_cron().

Purges some deleted Field API data, if any exists.

Related topics

Code

modules/field/field.module, line 199

<?php
function field_cron() {
  $limit = variable_get('field_purge_batch_size', 10);
  field_purge_batch($limit);
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.