You are here

public static function CronPlugin::getPluginTypes in Ultimate Cron 8.2

Returns a list of plugin types.

Return value

array

2 calls to CronPlugin::getPluginTypes()
CronJobForm::form in src/Form/CronJobForm.php
Gets the actual form array to be built.
ultimate_cron_cron in ./ultimate_cron.module
Implements hook_cronapi().

File

src/CronPlugin.php, line 36

Class

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

Namespace

Drupal\ultimate_cron

Code

public static function getPluginTypes() {
  return array(
    'scheduler' => t('Scheduler'),
    'launcher' => t('Launcher'),
    'logger' => t('Logger'),
  );
}