_configData = $configData; } /** * Validate config data * * Checks database connection params. * If connection is successfull the values are saved to the config file. * * @param Zend_View $view The view of the form for adding messages */ public function validate(Zend_View $view) { $saveConfig = false; $config = Msd_Configuration::getInstance(); $translator = Msd_Language::getInstance()->getTranslator(); $db = Msd_Db::getAdapter($this->_configData['dbuser']); try { $db->getServerInfo(); $saveConfig = true; } catch (Msd_Exception $e) { $msg = $translator->_('L_ERROR').' (' . $e->getCode().') '; $msg .= $e->getMessage(); $view->popUpMessage()->addMessage( 'db-access-error', 'L_ERROR', $msg, array( 'modal' => true, 'dialogClass' => 'error', ) ); } if ($saveConfig) { $config->save( $config->get('dynamic.configFile'), $this->_configData ); $view->popUpMessage()->addMessage( 'save-config', 'L_NOTICE', array('L_SAVE_SUCCESS', $config->get('dynamic.configFile')), array( 'modal' => true, 'dialogClass' => 'notice' ) ); } } }