You are here

public static function UltimateCronPlugin::setGlobalOption in Ultimate Cron 7.2

Set global plugin option.

Parameters

string $name: Name of global plugin option to get.

string $value: The value to give it.

2 calls to UltimateCronPlugin::setGlobalOption()
drush_ultimate_cron_cron_run in ./ultimate_cron.drush.inc
Run cron job(s).
UltimateCronSerialLauncher::launchJobs in plugins/ultimate_cron/launcher/serial.class.php
Launch manager.

File

./ultimate_cron.plugin.inc, line 85
Plugin framework for Ultimate Cron.

Class

UltimateCronPlugin
This is the base class for all Ultimate Cron plugins.

Code

public static function setGlobalOption($name, $value) {
  self::$globalOptions[$name] = $value;
}