You are here

public function UltimateCronPlugin::formatLabel in Ultimate Cron 7.2

Format label for the plugin.

Parameters

UltimateCronJob $job: The job for format the plugin label for.

Return value

string Formatted label.

1 method overrides UltimateCronPlugin::formatLabel()
UltimateCronCrontabScheduler::formatLabel in plugins/ultimate_cron/scheduler/crontab.class.php
Label for schedule.

File

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

Class

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

Code

public function formatLabel($job) {
  return $job->name;
}