This project is no longer maintained and no further public releases are planned.

No further support will be given.

Feel free to fork the git repository.

###submit_prevStep_[suffix]###

Use this to submit the form to the previous step and pass a special suffix. This is useful for multistep forms with different routes as you can use the suffix in conditions.This will be replace with the name attribute of the submit button.

Version added

1.0.0

Example code

<input type”submit” ###submit_prevStep_routeA### value=”###LLL:prev###” />

Will result in 

<input type”submit” name=”prefix[step-stepnumber-prev][routeA]”  value=”###LLL:prev###” />

Example for usage in conditions:

3 { 
    conditions.OR1.AND1 = step-stepnumber-next|routeA 
    isTrue { 
        1 { 
            templateSuffix = _routeA 
        } 
    } 
}