Merge pull request #13184 from civicrm/5.8
[civicrm-core.git] / CRM / Admin / Form / Setting / Url.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
8c9251b3 6 | Copyright CiviCRM LLC (c) 2004-2018 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
8c9251b3 31 * @copyright CiviCRM LLC (c) 2004-2018
6a488035
TO
32 */
33
34/**
ce064e4f 35 * This class generates form components for Site Url.
6a488035
TO
36 */
37class CRM_Admin_Form_Setting_Url extends CRM_Admin_Form_Setting {
38 protected $_settings = array(
14f20d22 39 'disable_core_css' => CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
d9d7e7dd
TO
40 'userFrameworkResourceURL' => CRM_Core_BAO_Setting::URL_PREFERENCES_NAME,
41 'imageUploadURL' => CRM_Core_BAO_Setting::URL_PREFERENCES_NAME,
42 'customCSSURL' => CRM_Core_BAO_Setting::URL_PREFERENCES_NAME,
43 'extensionsURL' => CRM_Core_BAO_Setting::URL_PREFERENCES_NAME,
6a488035 44 );
353ffa53 45
6a488035 46 /**
eceb18cc 47 * Build the form object.
6a488035
TO
48 */
49 public function buildQuickForm() {
50 CRM_Utils_System::setTitle(ts('Settings - Resource URLs'));
437a8990 51 $settingFields = civicrm_api('setting', 'getfields', array(
21dfd5f5 52 'version' => 3,
437a8990 53 ));
6a488035 54
6a488035
TO
55 $this->addYesNo('enableSSL', ts('Force Secure URLs (SSL)'));
56 $this->addYesNo('verifySSL', ts('Verify SSL Certs'));
437a8990
TO
57 // FIXME: verifySSL should use $_settings instead of manually adding fields
58 $this->assign('verifySSL_description', $settingFields['values']['verifySSL']['description']);
6a488035
TO
59
60 $this->addFormRule(array('CRM_Admin_Form_Setting_Url', 'formRule'));
61
62 parent::buildQuickForm();
63 }
64
e0ef6999
EM
65 /**
66 * @param $fields
67 *
68 * @return array|bool
69 */
00be9182 70 public static function formRule($fields) {
6a488035
TO
71 if (isset($fields['enableSSL']) &&
72 $fields['enableSSL']
73 ) {
74 $config = CRM_Core_Config::singleton();
75 $url = str_replace('http://', 'https://',
76 CRM_Utils_System::url('civicrm/dashboard', 'reset=1', TRUE,
77 NULL, FALSE, FALSE
78 )
79 );
80 if (!CRM_Utils_System::checkURL($url, TRUE)) {
81 $errors = array(
9d72cede 82 'enableSSL' => ts('You need to set up a secure server before you can use the Force Secure URLs option'),
6a488035
TO
83 );
84 return $errors;
85 }
86 }
87 return TRUE;
88 }
89
90 public function postProcess() {
91 // if extensions url is set, lets clear session status messages to avoid
92 // a potentially spurious message which might already have been set. This
93 // is a bit hackish
94 // CRM-10629
481a74f4 95 $session = CRM_Core_Session::singleton();
6a488035
TO
96 $session->getStatus(TRUE);
97
98 parent::postProcess();
99
100 parent::rebuildMenu();
101 }
96025800 102
6a488035 103}