CRM_Core_BAO_Setting::CONTRIBUTE_PREFERENCES_NAME, 'disable_core_css' => CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME, ); /** * Build the form object. * * @return void */ public function buildQuickForm() { CRM_Utils_System::setTitle(ts('Settings - Resource URLs')); $settingFields = civicrm_api('setting', 'getfields', array( 'version' => 3, )); $this->addElement('text', 'userFrameworkResourceURL', ts('CiviCRM Resource URL')); $this->addElement('text', 'imageUploadURL', ts('Image Upload URL')); $this->addElement('text', 'customCSSURL', ts('Custom css URL')); $this->addElement('text', 'extensionsURL', ts('Extension Resource URL')); $this->addYesNo('enableSSL', ts('Force Secure URLs (SSL)')); $this->addYesNo('verifySSL', ts('Verify SSL Certs')); // FIXME: verifySSL should use $_settings instead of manually adding fields $this->assign('verifySSL_description', $settingFields['values']['verifySSL']['description']); $this->addFormRule(array('CRM_Admin_Form_Setting_Url', 'formRule')); parent::buildQuickForm(); } /** * @param $fields * * @return array|bool */ public static function formRule($fields) { if (isset($fields['enableSSL']) && $fields['enableSSL'] ) { $config = CRM_Core_Config::singleton(); $url = str_replace('http://', 'https://', CRM_Utils_System::url('civicrm/dashboard', 'reset=1', TRUE, NULL, FALSE, FALSE ) ); if (!CRM_Utils_System::checkURL($url, TRUE)) { $errors = array( 'enableSSL' => ts('You need to set up a secure server before you can use the Force Secure URLs option'), ); return $errors; } } return TRUE; } public function postProcess() { // if extensions url is set, lets clear session status messages to avoid // a potentially spurious message which might already have been set. This // is a bit hackish // CRM-10629 $session = CRM_Core_Session::singleton(); $session->getStatus(TRUE); parent::postProcess(); parent::rebuildMenu(); } }