You are here

public function UltimateCronPlugin::isValid in Ultimate Cron 7.2

Default plugin valid for all jobs.

2 calls to UltimateCronPlugin::isValid()
UltimateCronBackgroundProcessLegacyLauncher::isValid in plugins/ultimate_cron/launcher/background_process_legacy.class.php
Only expose this plugin, if Background Process is 1.x.
UltimateCronTaggedSettings::isValid in ./ultimate_cron.plugin.inc
Only valid for jobs tagged with the proper tag.
2 methods override UltimateCronPlugin::isValid()
UltimateCronBackgroundProcessLegacyLauncher::isValid in plugins/ultimate_cron/launcher/background_process_legacy.class.php
Only expose this plugin, if Background Process is 1.x.
UltimateCronTaggedSettings::isValid in ./ultimate_cron.plugin.inc
Only valid for jobs tagged with the proper tag.

File

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

Class

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

Code

public function isValid($job = NULL) {
  return TRUE;
}