boolean_or

Description:

Returns the string true if one of the parameters is equal to true (not case sensitive), otherwise returns the string false.

Syntax:

Two to n parameters: Boolean values to be linked with the Boolean OR

Example:

<operation name="boolean_or">
<constant>false</constant>
<constant>True</constant>
<constant>this is not true</constant>
</operation>

Return value:

true
As soon as a value is found that is true, true is returned. Any subsequent values are not checked. If no value can be determined for one of the parameters checked, nothing is returned.