You are here

public function UltimateCronBackgroundProcessLegacyLauncher::defaultSettings in Ultimate Cron 7.2

Default settings.

Overrides UltimateCronLauncher::defaultSettings

File

plugins/ultimate_cron/launcher/background_process_legacy.class.php, line 95
Background Process 1.x launcher for Ultimate Cron.

Class

UltimateCronBackgroundProcessLegacyLauncher
Ultimate Cron launcher plugin class.

Code

public function defaultSettings() {
  return array(
    'recheck' => 0,
    'service_group' => variable_get('background_process_default_service_group', 'default'),
    'max_threads' => 2,
    'daemonize' => FALSE,
    'daemonize_interval' => 10,
    'daemonize_delay' => 1,
    'poorman_service_group' => variable_get('background_process_default_service_group', 'default'),
  ) + parent::defaultSettings();
}