{ Drupal modules and cron }

Is your cron failing you? Find out what modules hook into cron for easier troubleshooting:

/***
 * mymodule.module
***/

function mymodule_cron() {
     // Do stuff here
}

If you didn’t know about this module, use the module_implements() function:

$module_list = module_implements('cron');
print theme_list($module_list);
  • mymodule
  • another module
  • yet another module

Leave a Reply

Your email address will not be published. Required fields are marked *