diff --git a/core/modules/help_topics/help_topics/core.content_structure.html.twig b/core/modules/help_topics/help_topics/core.content_structure.html.twig index ac02aa413c..558fbc7f71 100644 --- a/core/modules/help_topics/help_topics/core.content_structure.html.twig +++ b/core/modules/help_topics/help_topics/core.content_structure.html.twig @@ -20,11 +20,15 @@ top_level: true
  • {% trans %}Date range (Datetime range module): Stores time/date periods with a start and and an end{% endtrans %}
  • {% trans %}Email (core system): Stores email addresses{% endtrans %}
  • {% trans %}Link (Link module): Stores URLs and link text{% endtrans %}
  • -
  • {% trans %}List (Options module): Stores values chosen from pre-defined lists; the values can be numbers or text{% endtrans %}
  • -
  • {% trans %}Reference (core system): Stores entity references{% endtrans %}
  • +
  • {% trans %}List (Options module): Stores values chosen from pre-defined lists, where the values can be numbers or text; see section below for more on list fields{% endtrans %}
  • +
  • {% trans %}Reference (core system): Stores entity references; see section above{% endtrans %}
  • {% trans %}Telephone (Telephone module): Stores telephone numbers{% endtrans %}
  • -
  • {% trans %}Text (Text module): Stores formatted and unformatted text{% endtrans %}
  • +
  • {% trans %}Text (Text module): Stores formatted and unformatted text; see section below for more on text fields.{% endtrans %}
  • +

    {% trans %}What settings are available for List field types?{% endtrans %}

    +

    {% trans %}List fields associate pre-defined keys (or value codes) with labels that the user sees. For example, you might define a list field that shows the user the names of several locations, while behind the scenes a location code is stored in the database. There are different list field types depending on the type of the value code; for example, a List (integer) field has integer values, while the values of a List (text) field are text strings. Once you have chosen the field type, the main setting for a list field is the Allowed values list, which associates the keys with the labels.{% endtrans %}

    +

    {% trans %}What types of Text fields are available?{% endtrans %}

    +

    {% trans %}There are several types of text fields, with different characteristics. Text fields can be either plain or formatted: plain text fields do not contain HTML, while formatted fields can contain HTML and are processed through text filters (these are provided by the core Filter module; if you have that module enabled, see the related topic below on filters for more information). Text fields can also be regular-length (with a limit of 255 characters) or long (with a very large character limit), and long formatted text fields can include a summary attribute. All possible combinations of these characteristics exist as text field types; for example, Text (plain) and Text (formatted, long, with summary) are two examples of text field types. {% endtrans %}

    {% trans %}What is a formatter?{% endtrans %}

    {% trans %}A formatter is a way to display a field; most field types offer several types of formatters, and most formatters have settings that further define how the field is displayed. It is also possible to completely hide a field from display, and you have the option of showing or hiding the field's label when it is displayed.{% endtrans %}

    {% trans %}What is a widget?{% endtrans %}

    diff --git a/core/modules/help_topics/help_topics/field_ui.add_field.html.twig b/core/modules/help_topics/help_topics/field_ui.add_field.html.twig index 1b18fdee80..f80f50b4f5 100644 --- a/core/modules/help_topics/help_topics/field_ui.add_field.html.twig +++ b/core/modules/help_topics/help_topics/field_ui.add_field.html.twig @@ -8,7 +8,7 @@ related: {% set content_types = render_var(url('entity.node_type.collection')) %} {% set content_structure = render_var(url('help.help_topic', {'id': 'core.content_structure'})) %}

    {% trans %}Goal{% endtrans %}

    -

    {% trans %}Add a field to an entity sub-type; see Managing content structure for an overview of entity types and sub-types.{% endtrans %}

    +

    {% trans %}Add a field to an entity sub-type; see Managing content structure for an overview of entity types and sub-types, as well as an overview of field types.{% endtrans %}

    {% trans %}Steps{% endtrans %}

    1. {% trans %}Navigate to the page for managing the entity sub-type you want to add the field to. For example, to add a field to a content type, in the Manage administrative menu, navigate to Structure > Content types.{% endtrans %}
    2. diff --git a/core/modules/help_topics/help_topics/filter.overview.html.twig b/core/modules/help_topics/help_topics/filter.overview.html.twig index e9516c18e7..c8295c887c 100644 --- a/core/modules/help_topics/help_topics/filter.overview.html.twig +++ b/core/modules/help_topics/help_topics/filter.overview.html.twig @@ -4,6 +4,8 @@ related: - core.security - core.content_structure - field_ui.manage_form + - field_ui.manage_display + - field_ui.add_field --- {% set content_url = render_var(url('filter.admin_overview')) %}

      {% trans %}Goal{% endtrans %}