protected function FeedsExQueryPathXml::configFormTableHeader in Feeds extensible parsers 7
Same name and namespace in other branches
- 7.2 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 119 - Contains FeedsExXml.
Class
- FeedsExQueryPathXml
- Parses XML documents with QueryPath.
Code
protected function configFormTableHeader() {
return array(
'attribute' => t('Attribute'),
) + parent::configFormTableHeader();
}