You are here

protected function CsvParser::configSourceLabel in Feeds 8.3

Returns the label for single source.

Return value

\Drupal\Core\StringTranslation\TranslatableMarkup|null A translated string if the source has a special name. Null otherwise.

Overrides ParserBase::configSourceLabel

File

src/Feeds/Parser/CsvParser.php, line 97

Class

CsvParser
Defines a CSV feed parser.

Namespace

Drupal\feeds\Feeds\Parser

Code

protected function configSourceLabel() {
  return $this
    ->t('CSV source');
}