Removed published/enabled checkbox till decide what to do with that.
Also placed author on forms and views
This commit is contained in:
parent
190a90a4db
commit
0ecdf1247c
@ -280,11 +280,11 @@ class ContactDetails extends RevisionableContentEntityBase implements ContactDet
|
||||
->setLabel(t('Enabled'))
|
||||
->setDescription(t('If this is ticked then this set of contact details is active.'))
|
||||
->setRevisionable(TRUE)
|
||||
->setDefaultValue(TRUE)
|
||||
->setDisplayOptions('form', [
|
||||
'type' => 'boolean_checkbox',
|
||||
'weight' => -3,
|
||||
]);
|
||||
# ->setDisplayOptions('form', [
|
||||
# 'type' => 'boolean_checkbox',
|
||||
# 'weight' => -3,
|
||||
# ])
|
||||
->setDefaultValue(TRUE);
|
||||
|
||||
$fields['created'] = BaseFieldDefinition::create('created')
|
||||
->setLabel(t('Created'))
|
||||
|
@ -191,6 +191,21 @@ class Person extends RevisionableContentEntityBase implements PersonInterface {
|
||||
->setRevisionable(TRUE)
|
||||
->setSetting('target_type', 'user')
|
||||
->setSetting('handler', 'default')
|
||||
->setDisplayOptions('form', [
|
||||
'type' => 'entity_reference_autocomplete',
|
||||
'weight' => 5,
|
||||
'settings' => [
|
||||
'match_operator' => 'CONTAINS',
|
||||
'size' => '60',
|
||||
'autocomplete_type' => 'tags',
|
||||
'placeholder' => '',
|
||||
],
|
||||
])
|
||||
->setDisplayOptions('view', [
|
||||
'label' => 'inline',
|
||||
'type' => 'author',
|
||||
'weight' => 100,
|
||||
])
|
||||
->setTranslatable(TRUE);
|
||||
|
||||
$fields['full_name'] = BaseFieldDefinition::create('string')
|
||||
@ -272,11 +287,11 @@ class Person extends RevisionableContentEntityBase implements PersonInterface {
|
||||
->setLabel(t('Enabled'))
|
||||
->setDescription(t('If this is ticked, the record is active'))
|
||||
->setRevisionable(TRUE)
|
||||
->setDefaultValue(TRUE)
|
||||
->setDisplayOptions('form', [
|
||||
'type' => 'boolean_checkbox',
|
||||
'weight' => -3,
|
||||
]);
|
||||
# ->setDisplayOptions('form', [
|
||||
# 'type' => 'boolean_checkbox',
|
||||
# 'weight' => -3,
|
||||
# ])
|
||||
->setDefaultValue(TRUE);
|
||||
|
||||
$fields['created'] = BaseFieldDefinition::create('created')
|
||||
->setLabel(t('Created'))
|
||||
|
@ -211,9 +211,9 @@ class Profile extends RevisionableContentEntityBase implements ProfileInterface
|
||||
->setSetting('handler', 'default')
|
||||
->setTranslatable(TRUE)
|
||||
->setDisplayOptions('view', [
|
||||
'label' => 'hidden',
|
||||
'label' => 'inline',
|
||||
'type' => 'author',
|
||||
'weight' => 0,
|
||||
'weight' => 100,
|
||||
])
|
||||
->setDisplayOptions('form', [
|
||||
'type' => 'entity_reference_autocomplete',
|
||||
@ -279,11 +279,11 @@ class Profile extends RevisionableContentEntityBase implements ProfileInterface
|
||||
->setLabel(t('Publishing status'))
|
||||
->setDescription(t('A boolean indicating whether the Profile is published.'))
|
||||
->setRevisionable(TRUE)
|
||||
->setDefaultValue(TRUE)
|
||||
->setDisplayOptions('form', [
|
||||
'type' => 'boolean_checkbox',
|
||||
'weight' => -3,
|
||||
]);
|
||||
# ->setDisplayOptions('form', [
|
||||
# 'type' => 'boolean_checkbox',
|
||||
# 'weight' => -3,
|
||||
# ])
|
||||
->setDefaultValue(TRUE);
|
||||
|
||||
$fields['created'] = BaseFieldDefinition::create('created')
|
||||
->setLabel(t('Created'))
|
||||
|
Reference in New Issue
Block a user