function ocupload_cron in One Click Upload 7.2
Implements hook_cron().
File
- ./
ocupload.module, line 382
Code
function ocupload_cron() {
$temporary_dir = 'temporary://ocupload';
if (file_exists($temporary_dir)) {
_ocupload_load_flowphp();
\Flow\Uploader::pruneChunks($temporary_dir, 3600);
}
}