我一直致力于使用XML Field模块的模块,如下所示。
我创建了一个实体类型,其字段类型为xml。
我已将此字段设置为接受多个值。例如,我的实体如下所示。
Entity (item description, body, Metadata(this is xml field with multiple value))
with data --> Item1 ('This is item 1', 'this is body', (
(
<page>
<title>metadata item 1</title>
<description>this is item 1</description>
</page>
)
(
<page>
<title>metadata item 2</title>
<description>this is item 2</description>
</page>
)
)
现在在Metatdata字段下,我看不到每个XML数据节点的标题。
根据模块标题必须使用显示
hook_node_view_alter()
,但是最近我开始进行模块开发,我无法实现这个钩子。
元数据的欲望输出是:
**Metadata(xml):**
metadata item 1: (<--- how to display these titles??)
This is item 1
metadata item 2: (<--- how to display these titles??)
This is item 2
答案 0 :(得分:0)
试试这个
<field type="spacer" name="myspacer1" label="<b> metadata item 1 </b>" />
<field type="spacer" name="myspacer2" label="<b> metadata item 2 </b>" />