group

Defines a content type group. Content type groups are used by Content Studio for two purposes:

  • To group the content types displayed in the File > New menu, making the menu easier to navigate. (Note, however, that this is only done for groups that contain more than one content type.)

  • To display buttons in the Search panel that can be used to filter search results. When one of the filter group buttons is selected in Content Studio, search results are filtered to show only content items of the types in the group.

The group's child ref-content-type elements reference the content types that belong to the group.

Syntax
<group>
    <label>...</label>?
    <ref-content-type/>+
  </group>
Examples
  • <ui:group name="articles">
      <ui:label>Stories</ui:label>
      <ui:ref-content-type name="news"/>
    </ui:group>