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