CRM-14106 - Regex targeting the first part of if statements
[civicrm-core.git] / CRM / Admin / Form / Setting / UpdateConfigBackend.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 Error Handling and Debugging
38 *
39 */
40class CRM_Admin_Form_Setting_UpdateConfigBackend extends CRM_Admin_Form_Setting {
41 protected $_oldBaseDir;
42 protected $_oldBaseURL;
43 protected $_oldSiteName;
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 - Cleanup Caches and Update Paths'));
53
e51744f5
DL
54 list(
55 $this->_oldBaseURL,
6a488035
TO
56 $this->_oldBaseDir,
57 $this->_oldSiteName
58 ) = CRM_Core_BAO_ConfigSetting::getConfigSettings();
59
60 $this->assign('oldBaseURL', $this->_oldBaseURL);
61 $this->assign('oldBaseDir', $this->_oldBaseDir);
62 $this->assign('oldSiteName', $this->_oldSiteName);
63
e51744f5
DL
64 $this->addElement(
65 'submit', $this->getButtonName('next', 'cleanup'), 'Cleanup Caches',
66 array('class' => 'form-submit', 'id' => 'cleanup-cache')
67 );
6a488035
TO
68
69 $this->add('text', 'newBaseURL', ts('New Base URL'), NULL, TRUE);
70 $this->add('text', 'newBaseDir', ts('New Base Directory'), NULL, TRUE);
71 if ($this->_oldSiteName) {
72 $this->add('text', 'newSiteName', ts('New Site Name'), NULL, TRUE);
73 }
74 $this->addFormRule(array('CRM_Admin_Form_Setting_UpdateConfigBackend', 'formRule'));
75
76 parent::buildQuickForm();
77 }
78
79 function setDefaultValues() {
80 if (!$this->_defaults) {
81 parent::setDefaultValues();
82
83 $config = CRM_Core_Config::singleton();
e51744f5
DL
84 list(
85 $this->_defaults['newBaseURL'],
6a488035
TO
86 $this->_defaults['newBaseDir'],
87 $this->_defaults['newSiteName']
88 ) = CRM_Core_BAO_ConfigSetting::getBestGuessSettings();
89 }
90
91 return $this->_defaults;
92 }
93
94 static function formRule($fields) {
95 $tmpDir = trim($fields['newBaseDir']);
96
97 $errors = array();
98 if (!is_writeable($tmpDir)) {
99 $errors['newBaseDir'] = ts('%1 directory does not exist or cannot be written by webserver',
100 array(1 => $tmpDir)
101 );
102 }
103 return $errors;
104 }
105
106 function postProcess() {
a7488080 107 if (!empty($_POST['_qf_UpdateConfigBackend_next_cleanup'])) {
6a488035
TO
108
109 $config = CRM_Core_Config::singleton();
110
111 // cleanup templates_c directory
112 $config->cleanup(1, FALSE);
113
114 // clear db caching
115 CRM_Core_Config::clearDBCache();
116 parent::rebuildMenu();
117
3e089a38
BS
118 CRM_Core_BAO_WordReplacement::rebuild();
119
6a488035
TO
120 CRM_Core_Session::setStatus(ts('Cache has been cleared and menu has been rebuilt successfully.'), ts("Success"), "success");
121 return CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/admin/setting/updateConfigBackend', 'reset=1'));
122 }
123
124 // redirect to admin page after saving
125 $session = CRM_Core_Session::singleton();
126 $session->pushUserContext(CRM_Utils_System::url('civicrm/admin'));
127
128 $params = $this->controller->exportValues($this->_name);
129
130 //CRM-5679
131 foreach ($params as $name => & $val) {
132 if ($val && in_array($name, array(
133 'newBaseURL', 'newBaseDir', 'newSiteName'))) {
134 $val = CRM_Utils_File::addTrailingSlash($val);
135 }
136 }
137
138 $from = array($this->_oldBaseURL, $this->_oldBaseDir);
139 $to = array(trim($params['newBaseURL']),
140 trim($params['newBaseDir']),
141 );
142 if ($this->_oldSiteName &&
143 $params['newSiteName']
144 ) {
145 $from[] = $this->_oldSiteName;
146 $to[] = $params['newSiteName'];
147 }
148
149 $newValues = str_replace($from,
150 $to,
151 $this->_defaults
152 );
153
154 parent::commonProcess($newValues);
155
156 parent::rebuildMenu();
157 }
158}
159