public function FieldHandlerInterface::getHandlerSettings in CMS Content Sync 8
Same name and namespace in other branches
- 2.1.x src/Plugin/FieldHandlerInterface.php \Drupal\cms_content_sync\Plugin\FieldHandlerInterface::getHandlerSettings()
- 2.0.x src/Plugin/FieldHandlerInterface.php \Drupal\cms_content_sync\Plugin\FieldHandlerInterface::getHandlerSettings()
Get the handler settings.
Return the actual form elements for any additional settings for this handler.
Parameters
array $current_values: The current values that the user set, if any
string $type:: One of 'pull', 'push', 'both'
Return value
array
1 method overrides FieldHandlerInterface::getHandlerSettings()
- FieldHandlerBase::getHandlerSettings in src/
Plugin/ FieldHandlerBase.php - Get the handler settings.
File
- src/
Plugin/ FieldHandlerInterface.php, line 73
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\PluginCode
public function getHandlerSettings($current_values, $type = 'both');