setRequest(Controller::curr()->getRequest()); } } private static $extensions = [ ControllerExtension::class, ]; public function Link($action = null) { return Controller::join_links( 'FormFactoryTest_TestController', $action, '/' ); } /** * @return Form */ public function Form() { // Simple example; Just get the first draft record $record = $this->getRecord(); $factory = new EditFormFactory(); return $factory->getForm($this, 'Form', ['Record' => $record]); } public function save($data, Form $form) { // Noop } /** * @return DataObject */ protected function getRecord() { return Versioned::get_by_stage(TestObject::class, Versioned::DRAFT)->first(); } }