You are here

public function FieldHandlerInterface::validateHandlerSettings in CMS Content Sync 2.1.x

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

Validate the settings defined above. $form and $form_state are the same as in the Form API.

Parameters

string $settings_key:

array $current_values:

Return value

mixed

1 method overrides FieldHandlerInterface::validateHandlerSettings()
FieldHandlerBase::validateHandlerSettings in src/Plugin/FieldHandlerBase.php
Validate the settings defined above. $form and $form_state are the same as in the Form API.

File

src/Plugin/FieldHandlerInterface.php, line 85

Class

FieldHandlerInterface
Specifies the publicly available methods of a field handler plugin that can be used to push and pull fields with Sync Core.

Namespace

Drupal\cms_content_sync\Plugin

Code

public function validateHandlerSettings(array &$form, FormStateInterface $form_state, string $entity_type_name, string $bundle_name, string $field_name, $current_values);