alt_cron module hooks - Hooks created by alt_cron module
 - These hooks supplement Drupal's built-in cron functionality

hook_alt_cron_fast
  Parameters:
    none
  Returns:
    array(
      'module_name' => bool - was this succesful or not?
    );
  Description:
    Maintenance tasks that need to be performed frequently (i.e. every 15
      minutes) should be placed in hook_alt_cron_fast instead of hook_cron

hook_alt_cron_slow
  Parameters:
    none
  Returns:
    array(
      'module_name' => bool - was this succesful or not?
    );
  Description:
    Maintenance tasks that need to be performed less frequently (i.e. once a
      day) should be placed in hook_alt_cron_fast instead of hook_cron