public function FlowControllerSimple::getPropertyConfig in CMS Content Sync 2.1.x
@inheritDoc
Overrides IFlowController::getPropertyConfig
File
- src/
Controller/ FlowControllerSimple.php, line 355
Class
Namespace
Drupal\cms_content_sync\ControllerCode
public function getPropertyConfig(string $entity_type, string $entity_bundle, string $property) {
$bundle_settings = $this
->getEntityTypeConfig($entity_type, $entity_bundle);
if (empty($bundle_settings['properties'][$property])) {
return NULL;
}
return $bundle_settings['properties'][$property];
}