コード例 #1
0
 public function editAction()
 {
     $data = $this->getRequest()->getPost('data');
     $submit = $this->getRequest()->getPost('submit');
     $formTab = $this->getRequest()->getUserParam('tab', "General");
     $id = $this->_applicationId;
     //check if cancel button is pressed
     if ($this->_formHelper->isCancel()) {
         //cancel form
         return $this->_formHelper->returnCancel($this->view->url(array('action' => 'index')), $this->translate('Action canceled'));
     }
     $application = new Application_Model_Application();
     if (!Application_Model_ApplicationMapper::getInstance()->find($id, $application)) {
         throw new Exception("Configuration not found");
     }
     $this->view->emailTransportTypeOptions = Application_Model_Application::getEmailTransportTypeOptions();
     $this->view->data = $application->toArray();
     $formClassName = "Admin_Form_Config" . $formTab;
     if (!class_exists($formClassName)) {
         $this->_formHelper->returnError("ne postoji");
         // Mare Srbine
     }
     $formConfigParams = "";
     $formConfigToEmails = "";
     switch ($formTab) {
         case "Email":
             $formConfigParams = new Admin_Form_ConfigParameters($data['parameters']);
             foreach ($data['to_emails'] as $to_emails) {
                 $formConfigToEmails[] = new Admin_Form_ConfigToEmails($to_emails);
             }
             break;
         case "Upload":
             if (isset($data['upload'])) {
                 foreach ($data['upload'] as $upload) {
                     $formConfigUploads[] = new Admin_Form_ConfigUploads($upload);
                 }
             }
             if (isset($data['default_upload'])) {
                 foreach ($data['default_upload'] as $defaultUpload) {
                     $formConfigDefaultUploads[] = new Admin_Form_ConfigUploads($defaultUpload);
                 }
             }
             break;
         default:
             break;
     }
     //create form object
     $form = new $formClassName($data);
     $errors = array();
     //postback - save?
     if ($this->_formHelper->isSave()) {
         //check if valid
         if ($form->isValid()) {
             switch ($formTab) {
                 case "Email":
                     $email_settings = $application->get_email_settings();
                     unset($email_settings['to_emails']);
                     unset($email_settings['parameters']);
                     $values['email_settings'] = $form->getValues();
                     //                       print_r(array_diff_assoc($application->get_email_settings(), $form->getValues()));die;
                     if ($formConfigParams->isValid()) {
                         $values['email_settings']['parameters'] = $formConfigParams->getValues();
                     } else {
                         $errors[] = $formConfigParams->getMessages();
                     }
                     foreach ($formConfigToEmails as $formConfigToEmail) {
                         if ($formConfigToEmail->isValid()) {
                             $values['email_settings']['to_emails'][] = $formConfigToEmail->getValues();
                         } else {
                             $errors[] = $formConfigToEmail->getMessages();
                         }
                     }
                     if (count($errors) > 0) {
                         $this->_formHelper->returnError($errors[0]);
                     }
                     $values['email_settings'] = $this->_mergeArrays($email_settings, $values['email_settings']);
                     break;
                 case "Fb":
                     $values['fb_settings'] = $form->getValues();
                     $values['fb_settings']['login_params']['scope'] = $data['login_params']['scope'];
                     $values['fb_settings']['login_params']['redirect_uri'] = $data['login_params']['redirect_uri'];
                     break;
                 case "Twitter":
                     $values['twitter_settings'] = $form->getValues();
                     break;
                 case "Og":
                     $values['og_settings'] = $form->getValues();
                     break;
                 case "Notes":
                     $notes = $form->getValues();
                     $values['settings'] = $application->get_settings();
                     $values['settings']['notes'] = $notes['notes'];
                     break;
                 case "Upload":
                     $values['settings'] = $application->get_settings();
                     unset($values['settings']['upload']);
                     unset($values['settings']['default_upload']);
                     if (isset($formConfigUploads)) {
                         foreach ($formConfigUploads as $formConfigUpload) {
                             if ($formConfigUpload->isValid()) {
                                 $value = $formConfigUpload->getValues();
                                 isset($value['extensions']) ? $values['settings']['upload']['extensions'][] = $value['extensions'] : '';
                                 isset($value['mimetypes']) ? $values['settings']['upload']['mimetypes'][] = $value['mimetypes'] : '';
                             } else {
                                 $errors[] = $formConfigUpload->getMessages();
                             }
                         }
                     }
                     if (isset($formConfigDefaultUploads)) {
                         foreach ($formConfigDefaultUploads as $formConfigDefaultUpload) {
                             if ($formConfigDefaultUpload->isValid()) {
                                 $value = $formConfigDefaultUpload->getValues();
                                 isset($value['default_extensions']) ? $values['settings']['default_upload']['default_extensions'][] = $value['default_extensions'] : '';
                                 isset($value['default_mimetypes']) ? $values['settings']['default_upload']['default_mimetypes'][] = $value['default_mimetypes'] : '';
                             } else {
                                 $errors[] = $formConfigDefaultUpload->getMessages();
                             }
                         }
                     }
                     if (count($errors) > 0) {
                         $this->_formHelper->returnError($errors[0]);
                     }
                     break;
                 default:
                     $values = $form->getValues();
                     $values['settings'] = $application->get_settings();
                     break;
             }
             //create entity object from submitted values, and save
             $application = new Application_Model_Application($values);
             $application->set_id($this->_applicationId);
             //new entity
             Application_Model_ApplicationMapper::getInstance()->save($application);
             //save done, return success
             return $this->_formHelper->returnSuccess($this->view->url(array('action' => 'index')), $this->translate('Configuration saved.'));
         } else {
             //we have errors - return json or continue
             $this->_formHelper->returnError($form->getMessages());
         }
     }
     $this->view->notice = $this->translate('Currently using the default file extensions and mime types! Here you can add more file extensions and mime types.');
 }
コード例 #2
0
 /**
  * Configuration action
  */
 public function configAction()
 {
     //read data from request
     $data = $this->getRequest()->getPost('data');
     $inputHashChangePost = $this->_request->getParam('inputHashChangePost');
     $inputHashChangeGet = $this->_request->getParam('inputHashChangeGet');
     //check if cancel button is pressed
     if ($this->_formHelper->isCancel()) {
         //cancel form
         return $this->_formHelper->returnCancel($this->view->url(array('action' => 'index')), $this->translate('Action canceled'));
     }
     if ($this->getRequest()->getParam("type") == 'contact') {
         $module_name = "contact";
     } else {
         if ($this->getRequest()->getParam("type") == 'newsletter') {
             $module_name = "newsletter";
         } else {
             if ($this->getRequest()->getParam("type") == 'blog') {
                 $module_name = "blog";
             } else {
                 throw new Exception("Contact module not found");
             }
         }
     }
     //read contact module
     $module = new Application_Model_Module();
     if (!Application_Model_ModuleMapper::getInstance()->findByCode($module_name, $module)) {
         throw new Exception("Contact module not found");
     }
     $this->view->data = array('email' => $module->get_settings('email'));
     $this->view->data['type'] = $module_name;
     $this->view->emailTransportTypeOptions = Application_Model_Application::getEmailTransportTypeOptions();
     //postback - save?
     if ($this->_formHelper->isSave()) {
         $formToEmails = new Contact_Form_ConfigToEmailsWrapper($data['email']['to_emails']);
         $formParameters = new Contact_Form_ConfigParameters($data['email']['parameters'], null, $data['email']['transport']);
         if ($module_name == 'contact') {
             $formEmail = new Contact_Form_ConfigEmail($data['email']);
         } elseif ($module_name == 'newsletter') {
             $formEmail = new Contact_Form_ConfigEmailNewsletter($data['email']);
         } elseif ($module_name == 'blog') {
             $formEmail = new Blog_Form_ConfigEmail($data['email']);
         }
         //check if valid
         if ($formEmail->isValid() && $formParameters->isValid() && $formToEmails->isValid()) {
             $data['email'] = $formEmail->getValues();
             $data['email']['parameters'] = $formParameters->getValues();
             $data['email']['to_emails'] = $formToEmails->getValues();
             $lang = new Translation_Model_Lang();
             if (!Translation_Model_LangMapper::getInstance()->findByCode(CURR_LANG, $lang)) {
                 throw new Exception('No language for this code.');
             }
             Translation_Model_TranslationMapper::getInstance()->save('mailtextRespondContactTranslationkey', $lang->get_id(), $data['email']['mailtext_respond_contact'], 'global');
             $data['email']['mailtext_respond_contact'] = 'mailtextRespondContactTranslationkey';
             Translation_Model_TranslationMapper::getInstance()->save('landingPageText', $lang->get_id(), $data['email']['landing_page_text'], 'global');
             $data['email']['landing_page_text'] = 'landingPageText';
             Translation_Model_TranslationMapper::getInstance()->save('subjectContactTranslationkey', $lang->get_id(), $data['email']['subject_contact'], 'global');
             $data['email']['subject_contact'] = 'subjectContactTranslationkey';
             //create module entity object
             $settings = $module->get_settings();
             $settings['email'] = $data['email'];
             $module->set_settings(json_encode($settings));
             $module->set_data(json_encode($module->get_data()));
             //new entity
             Application_Model_ModuleMapper::getInstance()->save($module);
             //save done, return success
             return $this->_formHelper->returnSuccess($this->view->url(array('action' => 'config', 'inputHashChangeGet' => $inputHashChangePost)), $this->translate('Configuration saved.'));
         } else {
             //we have errors - return json or continue
             $messages = $formEmail->getMessages();
             $messages['parameters'] = $formParameters->getMessages();
             $messages['to_emails'] = $formToEmails->getMessages();
             $this->view->data = $data;
             $this->_formHelper->returnError($messages);
         }
     }
     if (isset($inputHashChangeGet) && $inputHashChangeGet != '') {
         $this->view->inputHashChange = $inputHashChangeGet;
     } else {
         $this->view->inputHashChange = "email-config";
     }
     //country assign
     $countries = new Application_Model_Country();
     $countries = Application_Model_CountryMapper::getInstance()->getAllCountries(CURR_LANG);
     $this->view->countries = $countries;
     $this->view->languages = Application_Model_TranslateMapper::getInstance()->getLanguages();
     $this->view->fields = Contact_Form_Contact::getFields();
 }