In some applications, it is useful to know when a repository item has been modified most recently. You can set up a special property to store the last-modified time of a repository item. To configure a last-modified property:

The item descriptor might then look, in relevant part, like this:

<item-descriptor name="article" last-modified-property="lastActivity">
  <attribute name="updateLastModified" value="true"/>
<table name=ARTICLES type="primary" ...>
  <property name="lastActivity" data-type="timestamp"/>
...
</table>
</item-descriptor>

When items of this type are added or updated, the lastActivity property will be updated with the current time.

 
loading table of contents...