copyright and version fixes
[civicrm-core.git] / CRM / Admin / Form / Setting / Url.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
232624b1 4 | CiviCRM version 4.4 |
6a488035
TO
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2013
32 * $Id$
33 *
34 */
35
36/**
37 * This class generates form components for Site Url
38 *
39 */
40class CRM_Admin_Form_Setting_Url extends CRM_Admin_Form_Setting {
41 protected $_settings = array(
42 'cvv_backoffice_required' => CRM_Core_BAO_Setting::CONTRIBUTE_PREFERENCES_NAME,
14f20d22 43 'disable_core_css' => CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
6a488035
TO
44 );
45 /**
46 * Function to build the form
47 *
355ba699 48 * @return void
6a488035
TO
49 * @access public
50 */
51 public function buildQuickForm() {
52 CRM_Utils_System::setTitle(ts('Settings - Resource URLs'));
437a8990
TO
53 $settingFields = civicrm_api('setting', 'getfields', array(
54 'version' => 3
55 ));
6a488035
TO
56
57 $this->addElement('text', 'userFrameworkResourceURL', ts('CiviCRM Resource URL'));
58 $this->addElement('text', 'imageUploadURL', ts('Image Upload URL'));
14f20d22 59 $this->addElement('text', 'customCSSURL', ts('Custom css URL'));
6a488035
TO
60 $this->addElement('text', 'extensionsURL', ts('Extension Resource URL'));
61 $this->addYesNo('enableSSL', ts('Force Secure URLs (SSL)'));
62 $this->addYesNo('verifySSL', ts('Verify SSL Certs'));
437a8990
TO
63 // FIXME: verifySSL should use $_settings instead of manually adding fields
64 $this->assign('verifySSL_description', $settingFields['values']['verifySSL']['description']);
6a488035
TO
65
66 $this->addFormRule(array('CRM_Admin_Form_Setting_Url', 'formRule'));
67
68 parent::buildQuickForm();
69 }
70
71 static function formRule($fields) {
72 if (isset($fields['enableSSL']) &&
73 $fields['enableSSL']
74 ) {
75 $config = CRM_Core_Config::singleton();
76 $url = str_replace('http://', 'https://',
77 CRM_Utils_System::url('civicrm/dashboard', 'reset=1', TRUE,
78 NULL, FALSE, FALSE
79 )
80 );
81 if (!CRM_Utils_System::checkURL($url, TRUE)) {
82 $errors = array(
83 'enableSSL' =>
84 ts('You need to set up a secure server before you can use the Force Secure URLs option'),
85 );
86 return $errors;
87 }
88 }
89 return TRUE;
90 }
91
92 public function postProcess() {
93 // if extensions url is set, lets clear session status messages to avoid
94 // a potentially spurious message which might already have been set. This
95 // is a bit hackish
96 // CRM-10629
97 $session = CRM_Core_Session::singleton( );
98 $session->getStatus(TRUE);
99
100 parent::postProcess();
101
102 parent::rebuildMenu();
103 }
104}
105