Added Hat contact details field filtered by entity reference view.

This commit is contained in:
naomi 2018-04-12 12:51:21 +02:00
parent 2cf897c92b
commit fd3ee02099
1 changed files with 21 additions and 0 deletions

View File

@ -180,6 +180,27 @@ class Hat extends ContentEntityBase implements HatInterface {
->setDescription(t('The person this hat is of.'))
->setSetting('target_type', 'person');
$fields['contact_details'] = BaseFieldDefinition::create('entity_reference')
->setLabel(t('Contact Details'))
->setDescription(t('The contact details to be used when communicating with this person in this capacity.'))
->setSetting('target_type', 'contact_details')
->setSetting('handler', 'views')
->setSetting('handler_settings', ['view' => [
'view_name' => 'this_person_s_contact_details',
'display_name' => 'entity_reference_1'
]])
->setDisplayOptions('view', [
'label' => 'inline',
'weight' => 0,
'settings' => ['link' => 'false']
])
->setDisplayOptions('form', [
'type' => 'options_buttons',
'weight' => 0,
])
->setRequired(TRUE)
->setTranslatable(TRUE);
// This field is computed in a presave hook, and used for entity reference
// options when selecting a person for involvement in a case etc.
$fields['name'] = BaseFieldDefinition::create('string')