Merge pull request #4979 from xurizaemon/codingstandards-12
[civicrm-core.git] / CRM / Admin / Form / Extensions.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * This class generates form components for Extensions
38 *
39 */
40class CRM_Admin_Form_Extensions extends CRM_Admin_Form {
41
42 /**
100fef9d 43 * For pre-processing
6a488035 44 *
355ba699 45 * @return void
6a488035
TO
46 */
47 public function preProcess() {
48 parent::preProcess();
49
50 $this->_key = CRM_Utils_Request::retrieve('key', 'String',
51 $this, FALSE, 0
52 );
53
54 $session = CRM_Core_Session::singleton();
55 $url = CRM_Utils_System::url('civicrm/admin/extensions', 'reset=1&action=browse');
56 $session->pushUserContext($url);
57 $this->assign('id', $this->_id);
58 $this->assign('key', $this->_key);
59
6a488035
TO
60 switch ($this->_action) {
61 case CRM_Core_Action::ADD:
62 case CRM_Core_Action::DELETE:
63 case CRM_Core_Action::ENABLE:
64 case CRM_Core_Action::DISABLE:
65 $info = CRM_Extension_System::singleton()->getMapper()->keyToInfo($this->_key);
66 $extInfo = CRM_Admin_Page_Extensions::createExtendedInfo($info);
67 $this->assign('extension', $extInfo);
68 break;
69
70 case CRM_Core_Action::UPDATE:
353ffa53 71 if (!CRM_Extension_System::singleton()->getBrowser()->isEnabled()) {
6a488035
TO
72 CRM_Core_Error::fatal(ts('The system administrator has disabled this feature.'));
73 }
74 $info = CRM_Extension_System::singleton()->getBrowser()->getExtension($this->_key);
75 $extInfo = CRM_Admin_Page_Extensions::createExtendedInfo($info);
76 $this->assign('extension', $extInfo);
77 break;
78
79 default:
80 CRM_Core_Error::fatal(ts('Unsupported action'));
81 }
82
83 }
84
85 /**
c490a46a 86 * Set default values for the form.
6a488035
TO
87 * the default values are retrieved from the database
88 *
6a488035 89 *
355ba699 90 * @return void
6a488035 91 */
00be9182 92 public function setDefaultValues() {
6a488035
TO
93 $defaults = array();
94 return $defaults;
95 }
96
97 /**
c490a46a 98 * Build the form object
6a488035 99 *
355ba699 100 * @return void
6a488035
TO
101 */
102 public function buildQuickForm() {
103
17d48d22
JP
104 $info = CRM_Extension_System::singleton()->getMapper()->keyToInfo($this->_key);
105 $extInfo = CRM_Admin_Page_Extensions::createExtendedInfo($info);
106 $extName = $extInfo['name'];
107
6a488035
TO
108 switch ($this->_action) {
109 case CRM_Core_Action::ADD:
110 $buttonName = ts('Install');
86bfa4f6 111 $title = ts('Install ' . $extName . '?');
6a488035
TO
112 break;
113
114 case CRM_Core_Action::UPDATE:
115 $buttonName = ts('Download and Install');
86bfa4f6 116 $title = ts('Download and Install ' . $extName . '?');
6a488035
TO
117 break;
118
119 case CRM_Core_Action::DELETE:
120 $buttonName = ts('Uninstall');
17d48d22 121 $title = ts('Uninstall ' . $extName . '?');
6a488035
TO
122 break;
123
124 case CRM_Core_Action::ENABLE:
125 $buttonName = ts('Enable');
17d48d22 126 $title = ts('Enable ' . $extName . '?');
6a488035
TO
127 break;
128
129 case CRM_Core_Action::DISABLE:
affc7312 130 $buttonName = ts('Disable');
17d48d22 131 $title = ts('Disable ' . $extName . '?');
6a488035
TO
132 break;
133 }
134
135 $this->assign('title', $title);
136 $this->addButtons(array(
137 array(
138 'type' => 'next',
139 'name' => $buttonName,
140 'isDefault' => TRUE,
141 ),
142 array(
143 'type' => 'cancel',
144 'name' => ts('Cancel'),
145 ),
146 )
147 );
148 }
149
150 /**
100fef9d 151 * Global form rule
6a488035 152 *
5173bd95
TO
153 * @param array $fields
154 * The input form values.
155 * @param array $files
156 * The uploaded files if any.
157 * @param array $self
158 * This object.
6a488035 159 *
72b3a70c
CW
160 * @return bool|array
161 * true if no errors, else an array of errors
6a488035 162 */
00be9182 163 public static function formRule($fields, $files, $self) {
6a488035
TO
164 $errors = array();
165
166 return empty($errors) ? TRUE : $errors;
167 }
168
169 /**
c490a46a 170 * Process the form submission
6a488035 171 *
6a488035 172 *
355ba699 173 * @return void
6a488035
TO
174 */
175 public function postProcess() {
176 CRM_Utils_System::flushCache();
177
178 if ($this->_action & CRM_Core_Action::DELETE) {
179 try {
180 CRM_Extension_System::singleton()->getManager()->uninstall(array($this->_key));
181 CRM_Core_Session::setStatus("", ts('Extension Uninstalled'), "success");
0db6c3e1
TO
182 }
183 catch (CRM_Extension_Exception_DependencyException $e) {
6a488035
TO
184 // currently only thrown for payment-processor dependencies
185 CRM_Core_Session::setStatus(ts('Cannot uninstall this extension - there is at least one payment processor using the payment processor type provided by it.'), ts('Uninstall Error'), 'error');
186 }
187 }
188
189 if ($this->_action & CRM_Core_Action::ADD) {
190 CRM_Extension_System::singleton()->getManager()->install(array($this->_key));
191 CRM_Core_Session::setStatus("", ts('Extension Installed'), "success");
192 }
193
194 if ($this->_action & CRM_Core_Action::ENABLE) {
195 CRM_Extension_System::singleton()->getManager()->enable(array($this->_key));
196 CRM_Core_Session::setStatus("", ts('Extension Enabled'), "success");
197 }
198
199 if ($this->_action & CRM_Core_Action::DISABLE) {
200 CRM_Extension_System::singleton()->getManager()->disable(array($this->_key));
201 CRM_Core_Session::setStatus("", ts('Extension Disabled'), "success");
202 }
203
204 if ($this->_action & CRM_Core_Action::UPDATE) {
205 $result = civicrm_api('Extension', 'download', array(
206 'version' => 3,
207 'key' => $this->_key,
208 ));
353ffa53 209 if (!CRM_Utils_Array::value('is_error', $result, FALSE)) {
6a488035 210 CRM_Core_Session::setStatus("", ts('Extension Upgraded'), "success");
0db6c3e1
TO
211 }
212 else {
6a488035
TO
213 CRM_Core_Session::setStatus($result['error_message'], ts('Extension Upgrade Failed'), "error");
214 }
215 }
216
217 CRM_Utils_System::redirect(
218 CRM_Utils_System::url(
219 'civicrm/admin/extensions',
220 'reset=1&action=browse'
221 )
222 );
223 }
224}