You are here

public function FeedsConfigurable::configForm in Feeds 8.2

Return configuration form for this object. The keys of the configuration form must match the keys of the array returned by configDefaults().

Return value

FormAPI style form definition.

6 methods override FeedsConfigurable::configForm()
FeedsCSVParser::configForm in lib/Drupal/feeds/Plugin/feeds/parser/FeedsCSVParser.php
Build configuration form.
FeedsFileFetcher::configForm in lib/Drupal/feeds/Plugin/feeds/fetcher/FeedsFileFetcher.php
Overrides parent::configForm().
FeedsHTTPFetcher::configForm in lib/Drupal/feeds/Plugin/feeds/fetcher/FeedsHTTPFetcher.php
Override parent::configForm().
FeedsImporter::configForm in lib/Drupal/feeds/FeedsImporter.php
Override parent::configForm().
FeedsProcessor::configForm in lib/Drupal/feeds/Plugin/FeedsProcessor.php
Overrides parent::configForm().

... See full list

File

lib/Drupal/feeds/Plugin/FeedsConfigurable.php, line 185
FeedsConfigurable and helper functions.

Class

FeedsConfigurable
Base class for configurable classes. Captures configuration handling, form handling and distinguishes between in-memory configuration and persistent configuration.

Namespace

Drupal\feeds\Plugin

Code

public function configForm(&$form_state) {
  return array();
}