You are here

protected function QueryPathXmlParser::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 XmlParser::configFormTableHeader

File

src/Feeds/Parser/QueryPathXmlParser.php, line 132

Class

QueryPathXmlParser
Defines a XML parser using QueryPath.

Namespace

Drupal\feeds_ex\Feeds\Parser

Code

protected function configFormTableHeader() {
  return [
    'attribute' => $this
      ->t('Attribute'),
  ] + parent::configFormTableHeader();
}