Powermail:从数据库中的条目创建字段

时间:2018-12-11 20:57:10

标签: typo3 typo3-8.x powermail

我的问题:

我需要Powermail中的字段矩阵:

product_1 - price_1 - number_1
product_2 - price_2 - number_2
product_3 - price_3 - number_3

,依此类推。手动创建此字段没有问题,但我需要它从数据库派生。行数取决于数据库中的条目数。

是否有可能通过拼写或用户函数“即时”创建字段?

谢谢!

2 个答案:

答案 0 :(得分:1)

我将创建一个新字段,将其称为(例如)产品表。在手册中有一个示例如何执行:https://docs.typo3.org/typo3cms/extensions/powermail/ForDevelopers/AddNewFields/Index.html

以下是新字段的两个示例页面TSConfig行:

# Add new fields
tx_powermail.flexForm.type.addFieldOptions.productsheet = Product Fields
tx_powermail.flexForm.type.addFieldOptions.productsheet.dataType = 1

这是一个示例Productsheet.html部分文件:

{namespace vh=In2code\Powermail\ViewHelpers}

<h2><vh:string.escapeLabels>{field.title}</vh:string.escapeLabels><f:if condition="{field.mandatory}"><span class="mandatory">*</span></f:if></h2>

<table>
	<thead>
	<tr>
		<th scope="col">Menge</th>
		<th scope="col">Artikel Nr.</th>
		<th scope="col">Bezeichnung</th>
		<th scope="col">Preis Fr./m</th>
	</tr>
	</thead>
	<tbody>

	<f:for each="{0:1,1:2,2:3,3:4,4:5,5:6,6:7,7:8,8:9,9:10}" as="key">
		<tr>
			<td>
				<f:form.textfield type="number" class="mdl-textfield__input " name="field[{field.marker}][amount_{key}]" value="" />
			</td>
			<td>
				<f:form.textfield class="mdl-textfield__input " name="field[{field.marker}][article_no_{key}]" value="" />
			</td>
			<td>
				<f:form.textfield class="mdl-textfield__input " name="field[{field.marker}][description_{key}]" value="" />
			</td>
			<td>
				<f:form.textfield class="mdl-textfield__input " name="field[{field.marker}][price_{key}]" value="" />
			</td>
		</tr>
	</f:for>
	</tbody>
</table>

下一步是即时插入字段(如您所写)。那么,插入自己的viewhelper而不是在 现在,您可以自己用value =“”填充字段。

希望有帮助

答案 1 :(得分:0)

您可以使用Powermail的TypoScript字段从拼写中生成代码。

您也可以在页面TSConfig上使用自己的字段类型,如描述为here

tx_powermail.flexForm.type.addFieldOptions.new = New Field

# The label could also be written with LLL: to localize the label
# Example to grab a value from locallang.xml or locallang.xlf
#tx_powermail.flexForm.type.addFieldOptions.new = LLL:EXT:ext/Resources/Private/Language/locallang.xlf:label

# Tell powermail that the new fieldtype will transmit anything else then a string (0:string, 1:array, 2:date, 3:file)
# Example for dataType array
#tx_powermail.flexForm.type.addFieldOptions.new.dataType = 1

# The new field is not just a "show some text" field. It's a field where the user can send values and powermail stores the values?
# You can tell powermail that this new field should be exportable in backend module and via CommandController
#tx_powermail.flexForm.type.addFieldOptions.new.export = 1

new是字段标识符。默认情况下,Powermail搜索带有标识符名称的部分名称,例如New.html

现在,您可以使用ViewHelper来获取数据并为字段创建html。