function uc_store_cron in Ubercart 5
Implementation of hook_cron().
File
- uc_store/
uc_store.module, line 409 - Contains global Ubercart functions and store administration functionality.
Code
function uc_store_cron() {
// Report version information into Ubercart.org once a week if enabled.
if (variable_get('uc_store_report', TRUE) && variable_get('uc_store_last_report', 0) <= time() - 604800) {
uc_store_send_report();
}
}