conditions : else

DESCRIPTION

<else> if an "if" condition in <if-X> evaluates to false, any submodules with an <else> submodule will be executed. <else> must be the last submodule of <if-X>, and there can be only one <else> module per <if-X>


PARAMETERS

none


EXAMPLES

...     
     <if-input value="impossible>
          <else>
               executed if condition is false
          </else>
     </if-input>
...