You are here

protected function FeedsExQueryPathXml::configFormTableHeader in Feeds extensible parsers 7.2

Same name and namespace in other branches
  1. 7 src/FeedsExQueryPathXml.inc \FeedsExQueryPathXml::configFormTableHeader()

Reuturns the list of table headers.

Return value

array A list of header names keyed by the form keys.

Overrides FeedsExXml::configFormTableHeader

File

src/FeedsExQueryPathXml.inc, line 111
Contains FeedsExXml.

Class

FeedsExQueryPathXml
Parses XML documents with QueryPath.

Code

protected function configFormTableHeader() {
  return array(
    'attribute' => t('Attribute'),
  ) + parent::configFormTableHeader();
}