[prefix_]getEntryMetadata
Use this function to return field names mapping to values. DRECONTENT
can be used as the field name when assigning into the document content. The DREDATE
field and any fields names ending with _DATE
are converted to a standard date format using the getDateFormats
function.
Inputs: | xml (XmlDocument), document (Document) |
Outputs: | metadata (table:{string->string} or table:{string->list:{string}}) |
See also: | getDateFormats |
Example
function myPrefix_getEntryMetadata(xml, document) return { FieldName1="FieldValue1", FieldName2={"FieldValue2", "FieldValue3"} } end