You are here

public function UltimateCronPlugin::formatLabelVerbose in Ultimate Cron 7.2

Format verbose label for the plugin.

Parameters

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

Return value

string Verbosely formatted label.

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

File

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

Class

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

Code

public function formatLabelVerbose($job) {
  return $job->title;
}