This allows the form building process to access the request parameters so that request parameter-dependencies of the form can be resolved direcly while building the form and do not have to be delated until later.
See #2509
*/
public $objectActionClass;
- /**
- * @inheritDoc
- */
- public function __run() {
- $this->buildForm();
-
- parent::__run();
- }
-
/**
* @inheritDoc
*/
$this->form->action(LinkHandler::getInstance()->getLink($controller, $parameters));
}
+ /**
+ * @inheritDoc
+ */
+ public function show() {
+ $this->buildForm();
+
+ return parent::show();
+ }
+
/**
* @inheritDoc
*/