You are here

function filefield_paths_cron in File (Field) Paths 6.2

Implements hook_cron().

File

modules/system.inc, line 9

Code

function filefield_paths_cron() {
  foreach (_filefield_paths_includes() as $include) {
    if (function_exists($function = "_filefield_paths_include_{$include}_cron")) {
      $function();
    }
  }
}