You are here

function apps_cron in Apps 7

Implements hook_cron().

Cache Manifest so we are not pulling images and manifest when we hit the page

File

./apps.module, line 504
Module file for Apps

Code

function apps_cron() {
  apps_include('manifest');
  foreach (apps_servers() as $server) {
    return apps_request_manifest($server);
  }
}