Call transformer

Calls a method with optional arguments on a given entry and stores the result in a new entry in a row.

Usage:

<call method="methodName" to="targetField" >
    <parameter from="parameterField" >
</call>

Attributes:

  • method - name of the method to be called

  • to - name of the entry to be created

Children:

  • parameter - parameter to be passed to the method
    • from - name of the entry to be used as a parameter

Example with parameters:

<call method="strpos" to="strposResult" >
    <parameter from="haystackEntry" />
    <parameter from="needleEntry" />
</call>

Example without parameters:

<call method="time" to="timeResult" />