You are here

public function FeedsCSVParser::getMappingSourceList in Feeds 7.2

Override parent::getMappingSourceList() to use only lower keys.

Overrides FeedsParser::getMappingSourceList

File

plugins/FeedsCSVParser.inc, line 134
Contains the FeedsCSVParser class.

Class

FeedsCSVParser
Parses a given file as a CSV file.

Code

public function getMappingSourceList() {
  return array_map('drupal_strtolower', parent::getMappingSourceList());
}