0

I want to store the page id of a Powermail plugin in the form data. I would like to setup a hidden field and prefill it with the page id of the plugin.

plugin.tx_powermail.settings.setup.prefill.pid = TEXT
plugin.tx_powermail.settings.setup.prefill.pid.field = pid

The above code does not help: I only get the pid of the Powermail template, not that of the plugin.

Does anybody know a solution?

andreas
  • 16,357
  • 12
  • 72
  • 76
Stefan Padberg
  • 505
  • 2
  • 17

2 Answers2

1

Or a bit shorter:

plugin.tx_powermail.settings.setup.prefill.pid = TEXT
plugin.tx_powermail.settings.setup.prefill.pid.data = TSFE:id
Alex Kellner
  • 1,263
  • 6
  • 11
0

I found a solution:

plugin.tx_powermail.settings.setup.prefill.pid = TEXT
plugin.tx_powermail.settings.setup.prefill.pid.stdWrap.data = TSFE:id
andreas
  • 16,357
  • 12
  • 72
  • 76
Stefan Padberg
  • 505
  • 2
  • 17