我一直在研究一个模块,我在其中使用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