You are here

protected function FeedsExBase::configFormTableColumn in Feeds extensible parsers 7.2

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

Returns a form element for a specific column.

Parameters

array &$form_state: The current form state.

string $column_name: The name of the column.

array $source: The individual source item.

Return value

array A single form element.

1 call to FeedsExBase::configFormTableColumn()
FeedsExBase::configForm in src/FeedsExBase.inc
1 method overrides FeedsExBase::configFormTableColumn()
FeedsExXml::configFormTableColumn in src/FeedsExXml.inc
Returns a form element for a specific column.

File

src/FeedsExBase.inc, line 166
Contains FeedsExBase.

Class

FeedsExBase
The Feeds extensible parser.

Code

protected function configFormTableColumn(array &$form_state, $column_name, array $source) {
  return array();
}