mirror of
https://github.com/silverstripe/silverstripe-multiform
synced 2024-10-22 11:05:49 +02:00
15 lines
250 B
PHP
15 lines
250 B
PHP
|
<?php
|
||
|
|
||
|
class MultiFormTestStepTwo extends MultiFormStep {
|
||
|
|
||
|
protected static $next_steps = 'MultiFormTestStepThree';
|
||
|
|
||
|
function getFields() {
|
||
|
return new FieldSet(
|
||
|
new TextareaField('Comments', 'Tell us a bit about yourself...')
|
||
|
);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|