public function EntityHandlerInterface::getHandlerSettings in CMS Content Sync 8
Same name and namespace in other branches
- 2.1.x src/Plugin/EntityHandlerInterface.php \Drupal\cms_content_sync\Plugin\EntityHandlerInterface::getHandlerSettings()
- 2.0.x src/Plugin/EntityHandlerInterface.php \Drupal\cms_content_sync\Plugin\EntityHandlerInterface::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 EntityHandlerInterface::getHandlerSettings()
- EntityHandlerBase::getHandlerSettings in src/
Plugin/ EntityHandlerBase.php - Get the handler settings.
File
- src/
Plugin/ EntityHandlerInterface.php, line 76
Class
- EntityHandlerInterface
- Specifies the publicly available methods of an entity handler plugin that can be used to push and pull entities with Sync Core.
Namespace
Drupal\cms_content_sync\PluginCode
public function getHandlerSettings($current_values, $type = 'both');