mirror of
https://github.com/silverstripe/silverstripe-frameworktest
synced 2024-10-22 09:06:02 +00:00
14 lines
230 B
PHP
14 lines
230 B
PHP
<?php
|
|
class TestMultiFormPage extends Page {
|
|
|
|
}
|
|
|
|
class TestMultiFormPage_Controller extends Page_Controller {
|
|
|
|
function Form() {
|
|
$form = new TestMultiForm($this, 'Form', new FieldSet(), new FieldSet());
|
|
|
|
return $form;
|
|
}
|
|
}
|