You are here

public function FieldHandlerBase::validateHandlerSettings in CMS Content Sync 8

Same name and namespace in other branches
  1. 2.1.x src/Plugin/FieldHandlerBase.php \Drupal\cms_content_sync\Plugin\FieldHandlerBase::validateHandlerSettings()
  2. 2.0.x src/Plugin/FieldHandlerBase.php \Drupal\cms_content_sync\Plugin\FieldHandlerBase::validateHandlerSettings()

Validate the settings defined above. $form and $form_state are the same as in the Form API. $settings_key is the index at $form['sync_entities'] for this handler instance.

Parameters

$settings_key:

$current_values:

Return value

mixed

Overrides FieldHandlerInterface::validateHandlerSettings

1 method overrides FieldHandlerBase::validateHandlerSettings()
EntityReferenceHandlerBase::validateHandlerSettings in src/Plugin/EntityReferenceHandlerBase.php
Validate the settings defined above. $form and $form_state are the same as in the Form API. $settings_key is the index at $form['sync_entities'] for this handler instance.

File

src/Plugin/FieldHandlerBase.php, line 145

Class

FieldHandlerBase
Common base class for field handler plugins.

Namespace

Drupal\cms_content_sync\Plugin

Code

public function validateHandlerSettings(array &$form, FormStateInterface $form_state, $settings_key, $current_values) {

  // No settings means no validation.
}