' . htmlspecialchars($lang->sL('LLL:EXT:scheduler/Resources/Private/Language/locallang.xlf:label.fileStorageExtraction.registeredExtractors.without_extractors')) . '/div>';
}
$resultArray['html'] = '
';
return $resultArray;
}
/**
* Since the class name can be very long considering the namespace, only take the final
* part for better readability. The FQN of the class will be displayed as tooltip.
*/
private function formatExtractorClassName(ExtractorInterface $extractor): string
{
$extractorParts = explode('\\', get_class($extractor));
return (string)array_pop($extractorParts);
}
}