Chris@0: $field_name, Chris@0: 'type' => 'entity_reference', Chris@0: 'entity_type' => $entity_type, Chris@0: 'cardinality' => $cardinality, Chris@0: 'settings' => [ Chris@0: 'target_type' => $target_entity_type, Chris@0: ], Chris@0: ])->save(); Chris@0: } Chris@0: if (!FieldConfig::loadByName($entity_type, $bundle, $field_name)) { Chris@0: FieldConfig::create([ Chris@0: 'field_name' => $field_name, Chris@0: 'entity_type' => $entity_type, Chris@0: 'bundle' => $bundle, Chris@0: 'label' => $field_label, Chris@0: 'settings' => [ Chris@0: 'handler' => $selection_handler, Chris@0: 'handler_settings' => $selection_handler_settings, Chris@0: ], Chris@0: ])->save(); Chris@0: } Chris@0: } Chris@0: Chris@0: }