mirror of
https://github.com/silverstripe/silverstripe-multiform
synced 2024-10-22 11:05:49 +02:00
17 lines
309 B
PHP
17 lines
309 B
PHP
<?php
|
|
|
|
class MultiFormTestStepOne extends MultiFormStep {
|
|
|
|
protected static $next_steps = 'MultiFormTestStepTwo';
|
|
|
|
function getFields() {
|
|
return new FieldSet(
|
|
new TextField('FirstName', 'First name'),
|
|
new TextField('Surname', 'Surname'),
|
|
new EmailField('Email', 'Email address')
|
|
);
|
|
}
|
|
|
|
}
|
|
|
|
?>
|