You are here

public function FlowControllerSimple::getPropertyConfig in CMS Content Sync 2.1.x

@inheritDoc

Overrides IFlowController::getPropertyConfig

File

src/Controller/FlowControllerSimple.php, line 355

Class

FlowControllerSimple

Namespace

Drupal\cms_content_sync\Controller

Code

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];
}