diff --git a/application/forms/Install/LoggingPage.php b/application/forms/Install/LoggingPage.php deleted file mode 100644 index e41faa43e..000000000 --- a/application/forms/Install/LoggingPage.php +++ /dev/null @@ -1,65 +0,0 @@ -setName('logging'); - } - - /** - * Create and return the logging form - * - * @return LoggingForm - */ - protected function createForm() - { - if ($this->loggingForm === null) { - $this->loggingForm = new LoggingForm(); - $this->loggingForm->hideButtons(); - $this->loggingForm->setTokenDisabled(); - $this->loggingForm->setRequest($this->getRequest()); - $this->loggingForm->setConfiguration($this->getConfiguration()); - } - - return $this->loggingForm; - } - - /** - * Create this wizard page - */ - protected function create() - { - $loggingForm = $this->createForm(); - $loggingForm->buildForm(); // Needs to get called manually as it's nothing that Zend knows about - $this->addSubForm($loggingForm, $loggingForm->getName()); - } - - /** - * Return a config containing all values provided by the user - * - * @return Zend_Config - */ - public function getConfig() - { - return $this->createForm()->getConfig(); - } -}