public function ProcessorInterface::settingsForm

Returns a form to configure settings for the processor.

Parameters

array $form: The form definition array where the settings form is being included in.

array $form_state: An associative array containing the current state of the form.

Return value

array The form elements for the processor settings.

2 methods override ProcessorInterface::settingsForm()
DefaultProcessor::settingsForm in drupal/core/modules/aggregator/lib/Drupal/aggregator/Plugin/aggregator/processor/DefaultProcessor.php
Implements \Drupal\aggregator\Plugin\ProcessorInterface::settingsForm().
TestProcessor::settingsForm in drupal/core/modules/aggregator/tests/modules/aggregator_test/lib/Drupal/aggregator_test/Plugin/aggregator/processor/TestProcessor.php
Implements \Drupal\aggregator\Plugin\ProcessorInterface::settingsForm().

File

drupal/core/modules/aggregator/lib/Drupal/aggregator/Plugin/ProcessorInterface.php, line 34
Contains \Drupal\aggregator\Plugin\ProcessorInterface.

Class

ProcessorInterface
Defines an interface for aggregator processor implementations.

Namespace

Drupal\aggregator\Plugin

Code

public function settingsForm(array $form, array &$form_state);