You are here

system.inc in File (Field) Paths 6.2

File

modules/system.inc
View source
<?php

/**
 * @file
 */

/**
 * Implements hook_cron().
 */
function filefield_paths_cron() {
  foreach (_filefield_paths_includes() as $include) {
    if (function_exists($function = "_filefield_paths_include_{$include}_cron")) {
      $function();
    }
  }
}

Functions

Namesort descending Description
filefield_paths_cron Implements hook_cron().