mirror of
https://github.com/silverstripe/silverstripe-multiform
synced 2024-10-22 11:05:49 +02:00
15 lines
233 B
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?')
|
|
);
|
|
}
|
|
|
|
}
|
|
|
|
?>
|