mirror of
https://github.com/silverstripe/silverstripe-multiform
synced 2024-10-22 11:05:49 +02:00
17 lines
249 B
PHP
17 lines
249 B
PHP
<?php
|
|
|
|
class MultiFormTestClass extends MultiForm {
|
|
|
|
protected static $start_step = 'MultiFormTestStepOne';
|
|
|
|
/**
|
|
* Accessor method to $start_step
|
|
* @return string
|
|
*/
|
|
function getStartStep() {
|
|
return $this->stat('start_step');
|
|
}
|
|
|
|
}
|
|
|
|
?>
|