0

我在一个页面上有 2 个 Powermail 表单,其中一个需要自定义的 receiverMail 模板。如何根据插件实例指定要使用的模板文件?

我最好的猜测是做这样的事情:

plugin.tx_powermail {
  view {
    templateRootPath >
    templateRootPath {
      10 = EXT:powermail/Resources/Private/Templates/
      20 = CASE
      20 {
        key.field = uid
        default = fileadmin/template/powermail/Templates/
        123 = fileadmin/template/powermail/Templates2/
      }
    }
  }
} 

使用表单元素的 uid 这是行不通的。

4

1 回答 1

1

我会在 HTML 模板中进行 switch 或 if 条件。取决于 uid、标题,甚至更好的是布局字段中的值。

手册中描述了如何在布局字段中设置自己的值:https ://docs.typo3.org/typo3cms/extensions/powermail/Faq/Index.html#how-to-change-the-style-selector-with- my-own-values-in-forms-pages-or-fields

于 2017-10-25T07:01:03.027 回答