public function Flow::getFieldHandlerConfig in CMS Content Sync 8
Same name and namespace in other branches
- 2.0.x src/Entity/Flow.php \Drupal\cms_content_sync\Entity\Flow::getFieldHandlerConfig()
Get the settings for the given field.
Parameters
$entity_type_name:
$bundle_name:
$field_name:
Return value
array
File
- src/
Entity/ Flow.php, line 992
Class
- Flow
- Defines the "Content Sync - Flow" entity.
Namespace
Drupal\cms_content_sync\EntityCode
public function getFieldHandlerConfig($entity_type_name, $bundle_name, $field_name) {
$key = $entity_type_name . '-' . $bundle_name . '-' . $field_name;
if (!isset($this->sync_entities[$key])) {
return null;
}
return $this->sync_entities[$key];
}