diff --git a/core/modules/entity_reference/entity_reference.module b/core/modules/entity_reference/entity_reference.module
index e6d764b..94f4843 100644
--- a/core/modules/entity_reference/entity_reference.module
+++ b/core/modules/entity_reference/entity_reference.module
@@ -33,7 +33,15 @@ function entity_reference_help($route_name, RouteMatchInterface $route_match) {
$output .= '
' . t('Filtering and sorting reference fields') . '';
$output .= '' . t('Depending on the chosen entity type, additional filtering and sorting options are available for the list of entities that can be referred to, in the field settings. For example, the list of users can be filtered by role and sorted by name or ID.') . '';
$output .= '' . t('Displaying a reference') . '';
- $output .= '' . t('An entity reference can be displayed as a simple label with or without a link to the entity. Alternatively, the referenced entity can be displayed as a teaser (or any other available view mode) inside the referencing entity.') . '';
+ $output .= '' . t('An entity reference can be displayed as a simple label with or without a link to the entity. Alternatively, the referenced entity can be displayed as a teaser (or any other available view mode) inside the referencing entity. Certain entity types may provide additional display options. You can configure how the entity reference is displayed on the Manage display page for the entity.') . '';
+ $output .= '' . t('Configuring form displays') . '';
+ $output .= '' . t('Reference fields have several widgets available on the Manage form display page:');
+ $output .= '';
+ $output .= '- ' . t('The Check boxes/radio buttons widget displays the existing entities for the entity type as check boxes or radio buttons based on the Allowed number of values set for the field.') . '
';
+ $output .= '- ' . t('The Select list widget displays the existing entities in a drop-down list or scrolling list box based on the Allowed number of values setting for the field.') . '
';
+ $output .= '- ' . t('The Autocomplete widget displays text fields in which users can type entity labels based on the Allowed number of values. The widget can be configured to display all entities that contain the typed characters or restricted to those starting with those characters.') . '
';
+ $output .= '- ' . t('The Autocomplete (Tags style) widget displays a multi-text field in which users can type in a comma-separated list of entity labels.') . '
';
+ $output .= '
';
$output .= '';
return $output;
}
diff --git a/core/modules/taxonomy/taxonomy.module b/core/modules/taxonomy/taxonomy.module
index 112521f..2ef4d83 100644
--- a/core/modules/taxonomy/taxonomy.module
+++ b/core/modules/taxonomy/taxonomy.module
@@ -62,20 +62,11 @@ function taxonomy_help($route_name, RouteMatchInterface $route_match) {
$output .= '' . t('Managing terms') . '';
$output .= '' . t('Users who have the Administer vocabularies and terms permission or the Edit terms permission for a particular vocabulary can add, edit, and organize the terms in a vocabulary from a vocabulary\'s term listing page, which can be accessed by going to the Taxonomy administration page and clicking List terms in the Operations column. Users must have the Administer vocabularies and terms permission or the Delete terms permission for a particular vocabulary to delete terms.' , array('!taxonomy_admin' => \Drupal::url('entity.taxonomy_vocabulary.collection'))) . ' ';
$output .= '' . t('Classifying entity content') . '';
- $output .= '' . t('A user with the Administer fields permission for a certain entity type may add Entity reference fields to the entity, which will allow entities to be classified using taxonomy terms. See the Field module help and the Field UI help pages for general information on fields and how to create and manage them.' , array('!field_ui' => $field_ui_url, '!field' => \Drupal::url('help.page', array('name' => 'field')))) . '';
+ $output .= '' . t('A user with the Administer fields permission for a certain entity type may add Taxonomy term reference fields to the entity type, which will allow entities to be classified using taxonomy terms. See the Entity Reference help for more information about reference fields. See the Field module help and the Field UI help pages for general information on fields and how to create and manage them.' , array('!field_ui' => $field_ui_url, '!field' => \Drupal::url('help.page', array('name' => 'field')), '!entity_reference' => \Drupal::url('help.page', array('name' => 'entity_reference')))) . '';
$output .= '' . t('Adding new terms during content creation') . '';
- $output .= '' . t('Allowing users to add new terms gradually builds a vocabulary as content is added and edited. Users can add new terms if either of the two Autocomplete widgets is chosen for the Entity reference field. You will also need to enable the Create referenced entities if they don\'t already exist option, and restrict the field to one vocabulary.') . '';
+ $output .= '' . t('Allowing users to add new terms gradually builds a vocabulary as content is added and edited. Users can add new terms if either of the two Autocomplete widgets is chosen for the Taxonomy term reference field in the Manage form display page for the field. You will also need to enable the Create referenced entities if they don\'t already exist option, and restrict the field to one vocabulary.') . '';
$output .= '' . t('Configuring displays and form displays') . '';
- $output .= '' . t('The reference field have several formatters and widgets available on the Manage display and Manage form display pages, respectively:');
- $output .= '';
- $output .= '- ' . t('The Check boxes/radio buttons widget displays the existing terms of the vocabulary as check boxes or radio buttons based on the Allowed number of values set for the field.') . '
';
- $output .= '- ' . t('The Select list widget displays the existing terms in a drop-down list or scrolling list box based on the Allowed number of values set for the field.') . '
';
- $output .= '- ' . t('The Autocomplete widget of an Entity Reference field displays text fields in which users can type terms based on the Allowed number of values. The display of matching terms can include all terms that contain the typed characters or restricted to those starting with them.') . '
';
- $output .= '- ' . t('The Autocomplete (Tags style) widget of an Entity Reference field displays a multi-text field in which users can type in a comma-separated list of terms.') . '
';
- $output .= '- ' . t('The Label formatter displays only the name of the term.') . '
';
- $output .= '- ' . t('The Rendered entity formatter displays a fully rendered representation of the term (e.g. including fields like Description), with a configurable view mode setting.') . '
';
- $output .= '- ' . t('The Entity ID formatter displays only the unique term identifier.') . '
';
- $output .= '- ' . t('The RSS category formatter displays nothing when the entity item is displayed as HTML, but displays an RSS category instead of a list when the entity item is displayed in an RSS feed.') . '
';
+ $output .= '- ' . t('See the Entity Reference help page for the field widgets and formatters that can be configured for any reference field on the Manage display and Manage form display pages. Taxonomy additionally provides an RSS category formatter that displays nothing when the entity item is displayed as HTML, but displays an RSS category instead of a list when the entity item is displayed in an RSS feed.', array('!entity_reference' => \Drupal::url('help.page', array('name' => 'entity_reference')))) . '';
$output .= '
';
$output .= '';
$output .= '';