silverstripe-multiform/tests/code/MultiFormTestClass.php

17 lines
269 B
PHP

<?php
class MultiFormTestClass extends MultiForm implements TestOnly {
protected static $start_step = 'MultiFormTestStepOne';
/**
* Accessor method to $start_step
* @return string
*/
function getStartStep() {
return $this->stat('start_step');
}
}
?>