You are here

protected function FeedsExXml::configFormTableHeader in Feeds extensible parsers 7

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

Reuturns the list of table headers.

Return value

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

Overrides FeedsExBase::configFormTableHeader

1 call to FeedsExXml::configFormTableHeader()
FeedsExQueryPathXml::configFormTableHeader in src/FeedsExQueryPathXml.inc
Reuturns the list of table headers.
1 method overrides FeedsExXml::configFormTableHeader()
FeedsExQueryPathXml::configFormTableHeader in src/FeedsExQueryPathXml.inc
Reuturns the list of table headers.

File

src/FeedsExXml.inc, line 141
Contains FeedsExXml.

Class

FeedsExXml
Parses XML documents with XPath.

Code

protected function configFormTableHeader() {
  return array(
    'raw' => t('Raw'),
    'inner' => t('Inner XML'),
  );
}