You are here

function ultimate_cron_import_form_access in Ultimate Cron 6

Access handler for configuration import.

1 string reference to 'ultimate_cron_import_form_access'
ultimate_cron_menu in ./ultimate_cron.module
Implementation of hook_menu().

File

./ultimate_cron.module, line 779
@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_import_form_access() {
  if (module_exists('parallel_cron')) {
    return TRUE;
  }
  return FALSE;
}