Skip to content

Commit 1ce360e

Browse files
tameeshbpaul-m
tameeshb
authored andcommitted
Issue #2511182 by navneet0693, Nikhil Banait, tameeshb, artfulrobot, pp, madhavvyas: Content Entity Example does not properly specify default field values
1 parent 6157259 commit 1ce360e

File tree

3 files changed

+35
-4
lines changed

3 files changed

+35
-4
lines changed

content_entity_example/src/Entity/Contact.php

+29-2
Original file line numberDiff line numberDiff line change
@@ -218,10 +218,11 @@ public static function baseFieldDefinitions(EntityTypeInterface $entity_type) {
218218
->setLabel(t('Name'))
219219
->setDescription(t('The name of the Contact entity.'))
220220
->setSettings(array(
221-
'default_value' => '',
222221
'max_length' => 255,
223222
'text_processing' => 0,
224223
))
224+
// Set no default value.
225+
->setDefaultValue(NULL)
225226
->setDisplayOptions('view', array(
226227
'label' => 'above',
227228
'type' => 'string',
@@ -238,10 +239,11 @@ public static function baseFieldDefinitions(EntityTypeInterface $entity_type) {
238239
->setLabel(t('First Name'))
239240
->setDescription(t('The first name of the Contact entity.'))
240241
->setSettings(array(
241-
'default_value' => '',
242242
'max_length' => 255,
243243
'text_processing' => 0,
244244
))
245+
// Set no default value.
246+
->setDefaultValue(NULL)
245247
->setDisplayOptions('view', array(
246248
'label' => 'above',
247249
'type' => 'string',
@@ -306,6 +308,31 @@ public static function baseFieldDefinitions(EntityTypeInterface $entity_type) {
306308
->setDisplayConfigurable('form', TRUE)
307309
->setDisplayConfigurable('view', TRUE);
308310

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+
309336
$fields['langcode'] = BaseFieldDefinition::create('language')
310337
->setLabel(t('Language code'))
311338
->setDescription(t('The language code of ContentEntityExample entity.'));

content_entity_example/src/Entity/Controller/ContactListBuilder.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ class ContactListBuilder extends EntityListBuilder {
2323
*/
2424
protected $urlGenerator;
2525

26-
2726
/**
2827
* {@inheritdoc}
2928
*/
@@ -50,7 +49,6 @@ public function __construct(EntityTypeInterface $entity_type, EntityStorageInter
5049
$this->urlGenerator = $url_generator;
5150
}
5251

53-
5452
/**
5553
* {@inheritdoc}
5654
*
@@ -81,6 +79,7 @@ public function buildHeader() {
8179
$header['name'] = $this->t('Name');
8280
$header['first_name'] = $this->t('First Name');
8381
$header['gender'] = $this->t('Gender');
82+
$header['role'] = $this->t('Role');
8483
return $header + parent::buildHeader();
8584
}
8685

@@ -93,6 +92,7 @@ public function buildRow(EntityInterface $entity) {
9392
$row['name'] = $entity->link();
9493
$row['first_name'] = $entity->first_name->value;
9594
$row['gender'] = $entity->gender->value;
95+
$row['role'] = $entity->role->value;
9696
return $row + parent::buildRow($entity);
9797
}
9898

content_entity_example/tests/src/Functional/ContentEntityExampleTest.php

+4
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ public function testContentEntityExample() {
5454
$assert->fieldValueEquals('name[0][value]', '');
5555
$assert->fieldValueEquals('name[0][value]', '');
5656
$assert->fieldValueEquals('name[0][value]', '');
57+
$assert->fieldValueEquals('name[0][value]', '');
5758

5859
$user_ref = $web_user->name->value . ' (' . $web_user->id() . ')';
5960
$assert->fieldValueEquals('user_id[0][target_id]', $user_ref);
@@ -63,6 +64,7 @@ public function testContentEntityExample() {
6364
'name[0][value]' => 'test name',
6465
'first_name[0][value]' => 'test first name',
6566
'gender' => 'male',
67+
'role' => 'administrator',
6668
);
6769
$this->drupalPostForm(NULL, $edit, t('Save'));
6870

@@ -75,6 +77,7 @@ public function testContentEntityExample() {
7577
// Entity shown.
7678
$assert->pageTextContains('test name');
7779
$assert->pageTextContains('test first name');
80+
$assert->pageTextContains('administrator');
7881
$assert->pageTextContains('male');
7982
$assert->linkExists('Add Contact');
8083
$assert->linkExists('Edit');
@@ -113,6 +116,7 @@ public function testPaths() {
113116
'name' => 'somename',
114117
'first_name' => 'Joe',
115118
'gender' => 'female',
119+
'role' => 'administrator',
116120
)
117121
);
118122
$contact->save();

0 commit comments

Comments
 (0)