@@ -218,10 +218,11 @@ public static function baseFieldDefinitions(EntityTypeInterface $entity_type) {
218
218
->setLabel (t ('Name ' ))
219
219
->setDescription (t ('The name of the Contact entity. ' ))
220
220
->setSettings (array (
221
- 'default_value ' => '' ,
222
221
'max_length ' => 255 ,
223
222
'text_processing ' => 0 ,
224
223
))
224
+ // Set no default value.
225
+ ->setDefaultValue (NULL )
225
226
->setDisplayOptions ('view ' , array (
226
227
'label ' => 'above ' ,
227
228
'type ' => 'string ' ,
@@ -238,10 +239,11 @@ public static function baseFieldDefinitions(EntityTypeInterface $entity_type) {
238
239
->setLabel (t ('First Name ' ))
239
240
->setDescription (t ('The first name of the Contact entity. ' ))
240
241
->setSettings (array (
241
- 'default_value ' => '' ,
242
242
'max_length ' => 255 ,
243
243
'text_processing ' => 0 ,
244
244
))
245
+ // Set no default value.
246
+ ->setDefaultValue (NULL )
245
247
->setDisplayOptions ('view ' , array (
246
248
'label ' => 'above ' ,
247
249
'type ' => 'string ' ,
@@ -306,6 +308,31 @@ public static function baseFieldDefinitions(EntityTypeInterface $entity_type) {
306
308
->setDisplayConfigurable ('form ' , TRUE )
307
309
->setDisplayConfigurable ('view ' , TRUE );
308
310
311
+ // Role field for the contact.
312
+ // The values shown in options are 'administrator' and 'user'.
313
+ $ fields ['role ' ] = BaseFieldDefinition::create ('list_string ' )
314
+ ->setLabel (t ('Role ' ))
315
+ ->setDescription (t ('The role of the Contact entity. ' ))
316
+ ->setSettings (array (
317
+ 'allowed_values ' => array (
318
+ 'administrator ' => 'administrator ' ,
319
+ 'user ' => 'user ' ,
320
+ ),
321
+ ))
322
+ // Set the default value of this field to 'user'.
323
+ ->setDefaultValue ('user ' )
324
+ ->setDisplayOptions ('view ' , array (
325
+ 'label ' => 'above ' ,
326
+ 'type ' => 'string ' ,
327
+ 'weight ' => -2 ,
328
+ ))
329
+ ->setDisplayOptions ('form ' , array (
330
+ 'type ' => 'options_select ' ,
331
+ 'weight ' => -2 ,
332
+ ))
333
+ ->setDisplayConfigurable ('form ' , TRUE )
334
+ ->setDisplayConfigurable ('view ' , TRUE );
335
+
309
336
$ fields ['langcode ' ] = BaseFieldDefinition::create ('language ' )
310
337
->setLabel (t ('Language code ' ))
311
338
->setDescription (t ('The language code of ContentEntityExample entity. ' ));
0 commit comments