如何在露天内容模型即applicationModel.xml之外的方面内添加一个属性

时间:2018-08-18 14:31:55

标签: alfresco

我想在Alfresco内容模型applicationModel.xml的一个方面内添加一个属性。

这怎么办?

<aspect name="app:linked">
  <title>Marker aspect to indicate that the node has been linked.</title>
 </aspect>

以下属性应添加到上述方面中。

<properties>
  <property name="app:links">
    <title>Links:::</title>
    <type>d:noderef</type>
    <multiple>true</multiple>
  </property>
</properties>

1 个答案:

答案 0 :(得分:0)

从不更新现成的Alfresco内容模型。你在找麻烦。

在这种情况下,使用自己的内容模型在其自己的名称空间中扩展内容模型,然后使用它定义具有所需属性的新方面,然后根据需要将该方面添加到对象实例中。