Platform Explorer / Nuxeo Platform LTS 2019 10.10

Contribution org.nuxeo.ecm.platform.mail.web.types.contrib--types

This contribution is part of XML component org.nuxeo.ecm.platform.mail.web.types.contrib inside nuxeo-platform-mail-types-10.10.jar /OSGI-INF/nxmail-ecm-types-contrib.xml

Extension Point

Extension point types of component TypeService.

Registration Order

5
The registration order represents the order in which this contribution was registered on its target extention point. This will impact the override/merge behaviour when it is implemented on the target service, and is useful for proper customization of existing contributions.
You can influence this order by adding "require" tags in the containing component declaration, to make sure it is resolved after another component (see "Resolution Order" on components).

Contributed Items

  • <type id="MailMessage">
          <label>MailMessage</label>
          <icon>/icons/mail.png</icon>
          <bigIcon>/icons/mail_100.png</bigIcon>
          <category>SimpleDocument</category>
          <default-view>view_documents</default-view>
          <layouts mode="any">
            <layout>mailMessage</layout>
            <layout>noLabelFiles</layout>
          </layouts>
          <layouts mode="edit">
            <layout>mailMessage</layout>
            <layout>noLabelFiles</layout>
            <layout>dublincore</layout>
          </layouts>
          <!-- files content already on summary page -->
          <layouts mode="view">
            <layout>mailMessage</layout>
          </layouts>
        </type>
  • <type id="MailFolder">
          <label>MailFolder</label>
          <icon>/icons/mail_folder.png</icon>
          <bigIcon>/icons/mailfolder_100.png</bigIcon>
          <category>Collaborative</category>
          <default-view>view_documents</default-view>
          <layouts mode="any">
            <layout>mail_folder</layout>
          </layouts>
          <contentViews category="content">
            <contentView>mail_document_content</contentView>
          </contentViews>
          <contentViews category="trash_content">
            <contentView showInExportView="false">
              document_trash_content
            </contentView>
          </contentViews>
        </type>

XML Source

<extension point="types" target="org.nuxeo.ecm.platform.types.TypeService">

    <type id="MailMessage">
      <label>MailMessage</label>
      <icon>/icons/mail.png</icon>
      <bigIcon>/icons/mail_100.png</bigIcon>
      <category>SimpleDocument</category>
      <default-view>view_documents</default-view>
      <layouts mode="any">
        <layout>mailMessage</layout>
        <layout>noLabelFiles</layout>
      </layouts>
      <layouts mode="edit">
        <layout>mailMessage</layout>
        <layout>noLabelFiles</layout>
        <layout>dublincore</layout>
      </layouts>
      <!-- files content already on summary page -->
      <layouts mode="view">
        <layout>mailMessage</layout>
      </layouts>
    </type>

    <type id="MailFolder">
      <label>MailFolder</label>
      <icon>/icons/mail_folder.png</icon>
      <bigIcon>/icons/mailfolder_100.png</bigIcon>
      <category>Collaborative</category>
      <default-view>view_documents</default-view>
      <layouts mode="any">
        <layout>mail_folder</layout>
      </layouts>
      <contentViews category="content">
        <contentView>mail_document_content</contentView>
      </contentViews>
      <contentViews category="trash_content">
        <contentView showInExportView="false">
          document_trash_content
        </contentView>
      </contentViews>
    </type>

  </extension>