You are here

protected function FeedsExBase::getFormHeader in Feeds extensible parsers 7.2

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

Returns the configuration form table header.

Return value

array The header array.

2 calls to FeedsExBase::getFormHeader()
FeedsExBase::configForm in src/FeedsExBase.inc
FeedsExBase::configFormValidate in src/FeedsExBase.inc

File

src/FeedsExBase.inc, line 774
Contains FeedsExBase.

Class

FeedsExBase
The Feeds extensible parser.

Code

protected function getFormHeader() {
  $header = array(
    'name' => t('Name'),
    'machine_name' => t('Machine name'),
    'value' => t('Value'),
  );
  $header += $this
    ->configFormTableHeader();
  $header += array(
    'debug' => t('Debug'),
    'remove' => t('Remove'),
    'weight' => t('Weight'),
  );
  return $header;
}