You are here

public function MatchEngineBase::submitConfigurationForm in CRM Core 8.2

Same name and namespace in other branches
  1. 8.3 modules/crm_core_match/src/Plugin/crm_core_match/engine/MatchEngineBase.php \Drupal\crm_core_match\Plugin\crm_core_match\engine\MatchEngineBase::submitConfigurationForm()
  2. 8 modules/crm_core_match/src/Plugin/crm_core_match/engine/MatchEngineBase.php \Drupal\crm_core_match\Plugin\crm_core_match\engine\MatchEngineBase::submitConfigurationForm()

Form submission handler.

Parameters

array $form: An associative array containing the structure of the plugin form as built by static::buildConfigurationForm().

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. Calling code should pass on a subform state created through \Drupal\Core\Form\SubformState::createForSubform().

Overrides PluginFormInterface::submitConfigurationForm

1 method overrides MatchEngineBase::submitConfigurationForm()
DefaultMatchingEngine::submitConfigurationForm in modules/crm_core_match/src/Plugin/crm_core_match/engine/DefaultMatchingEngine.php
Form submission handler.

File

modules/crm_core_match/src/Plugin/crm_core_match/engine/MatchEngineBase.php, line 103
Contains \Drupal\crm_core_match\Plugin\crm_core_match\engine\MatchEngineBase.

Class

MatchEngineBase
Default implementation of MatchEngineInterface.

Namespace

Drupal\crm_core_match\Plugin\crm_core_match\engine

Code

public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {

  // Do nothing.
}