You are here

function finder_cron in Finder 7.2

Implements hook_cron().

File

./finder.module, line 238
The finder module.

Code

function finder_cron() {
  $finders = finder_load_all(TRUE);
  foreach ($finders as $finder) {
    $finder
      ->choice_repopulate();
  }
}