Arguments are used by the Function implementation. There are two types of Arguments:arg | description |
---|
attribute | The value is a name of an Attribute and it's value is assigned to the name of the Argument | literal | The value is treated as a constant string and is assigned to the name of the Argument |
Syntax<Arguments>
<Argument name="first" type="attribute" value="firstname"/>
<Argument name="dot" type="literal" value="."/>
<Argument name="last" type="attribute" value="lastname"/>
<Argument name="at" type="literal" value="@"/>
<Argument name="domainname" type="literal" value="openptk.org"/>
</Arguments>
ArgumentsName | Required | Description | Example |
---|
name | Yes | A unique name for the Argument | name="first" | type | Yes | The argument type. The value must be either literal or attribute | type="attribute" | value | Yes | The value of the Argument. | value="firstname" |
|