silverstripe-multiform/tests/code/MultiFormTestStepThree.php

15 lines
233 B
PHP

<?php
class MultiFormTestStepThree extends MultiFormStep {
protected static $is_final_step = true;
function getFields() {
return new FieldSet(
new TextField('Test', 'Anything else you\'d like to tell us?')
);
}
}
?>