diff --git a/src/Forms/FormRequestHandler.php b/src/Forms/FormRequestHandler.php index 67e0d755b..bc2ca1437 100644 --- a/src/Forms/FormRequestHandler.php +++ b/src/Forms/FormRequestHandler.php @@ -236,6 +236,11 @@ class FormRequestHandler extends RequestHandler return $this->$funcName($vars, $this->form, $request); } + // Otherwise, try a handler method on the form itself + if ($this->form->hasMethod($funcName)) { + return $this->form->$funcName($vars, $this->form, $request); + } + // Check for inline actions $field = $this->checkFieldsForAction($this->form->Fields(), $funcName); if ($field) { diff --git a/tests/php/Forms/FormRequestHandlerTest.php b/tests/php/Forms/FormRequestHandlerTest.php new file mode 100644 index 000000000..2206c856d --- /dev/null +++ b/tests/php/Forms/FormRequestHandlerTest.php @@ -0,0 +1,45 @@ +disableSecurityToken(); + $handler = new TestFormRequestHandler($form); + $request = new HTTPRequest('POST', '/', null, ['action_mySubmitOnFormHandler' => 1]); + $response = $handler->httpSubmission($request); + $this->assertFalse($response->isError()); + } + + public function testCallsActionOnForm() + { + $form = new TestForm( + new Controller(), + 'Form', + new FieldList(), + new FieldList(new FormAction('mySubmitOnForm')) + ); + $form->disableSecurityToken(); + $handler = new FormRequestHandler($form); + $request = new HTTPRequest('POST', '/', null, ['action_mySubmitOnForm' => 1]); + $response = $handler->httpSubmission($request); + $this->assertFalse($response->isError()); + } +} diff --git a/tests/php/Forms/FormRequestHandlerTest/FormRequestHandler.php b/tests/php/Forms/FormRequestHandlerTest/FormRequestHandler.php new file mode 100644 index 000000000..6de7ffe2b --- /dev/null +++ b/tests/php/Forms/FormRequestHandlerTest/FormRequestHandler.php @@ -0,0 +1,14 @@ +