protected function XmlParser::configFormTableHeader in Feeds extensible parsers 8
Returns the list of table headers.
Return value
array A list of header names keyed by the form keys.
Overrides ParserBase::configFormTableHeader
1 call to XmlParser::configFormTableHeader()
- QueryPathXmlParser::configFormTableHeader in src/
Feeds/ Parser/ QueryPathXmlParser.php - Returns the list of table headers.
1 method overrides XmlParser::configFormTableHeader()
- QueryPathXmlParser::configFormTableHeader in src/
Feeds/ Parser/ QueryPathXmlParser.php - Returns the list of table headers.
File
- src/
Feeds/ Parser/ XmlParser.php, line 209
Class
- XmlParser
- Defines a XML parser using XPath.
Namespace
Drupal\feeds_ex\Feeds\ParserCode
protected function configFormTableHeader() {
return [
'raw' => $this
->t('Raw'),
'inner' => $this
->t('Inner XML'),
];
}