function _ultimate_cron_incompatible_modules in Ultimate Cron 7
Same name and namespace in other branches
- 8 ultimate_cron.module \_ultimate_cron_incompatible_modules()
- 6 ultimate_cron.module \_ultimate_cron_incompatible_modules()
Return a list of modules that are incompatible with Ultimate Cron
6 calls to _ultimate_cron_incompatible_modules()
- ultimate_cron_cron_run in ./
ultimate_cron.module - The cron handler takes over the normal Drupal cron handler and runs the normal hook_cron() plus the hook_cronapi().
- ultimate_cron_menu_alter in ./
ultimate_cron.module - Implements hook_menu_alter().
- ultimate_cron_requirements in ./
ultimate_cron.install - Implements hook_requirements().
- ultimate_cron_service_start in ./
ultimate_cron.admin.inc - Run a single function.
- ultimate_cron_trigger_poorman in ./
ultimate_cron.module - Launch poorman cron if it's time to do so.
File
- ./
ultimate_cron.module, line 1374 - @todo Add filter on overview page. @todo Add log view (with graph). @todo Make proper markup for overview page. @todo Refactor drush stuff, too many intimate relations with Background Process @todo Refactor Cron % offset stuff. Too mixed up and…
Code
function _ultimate_cron_incompatible_modules() {
static $modules = NULL;
if (isset($modules)) {
return $modules;
}
$modules = array();
$candidates = array(
'parallel_cron',
);
foreach ($candidates as $module) {
if (module_exists($module)) {
$modules[$module] = ultimate_cron_module_name($module);
}
}
return $modules;
}