Return a title for this job item.
string|false: The label of the job item entity.
Overrides SourcePluginBase::getLabel
public function getLabel(JobItemInterface $job_item) {
try {
return $this
->getMapper($job_item)
->getTitle();
} catch (TMGMTException $e) {
// Don't throw an error here as it would clutter the UI.
}
return NULL;
}