3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
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. |
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. |
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 +--------------------------------------------------------------------+
29 * This is a part of CiviCRM extension management functionality.
32 * @copyright CiviCRM LLC (c) 2004-2014
38 * This page displays the list of extensions registered in the system.
40 class CRM_Admin_Page_Extensions
extends CRM_Core_Page_Basic
{
43 * The action links that we need to display for the browse screen
48 static $_links = NULL;
51 * Obtains the group name from url and sets the title.
57 function preProcess() {
58 CRM_Utils_System
::setTitle(ts('CiviCRM Extensions'));
59 $destination = CRM_Utils_System
::url( 'civicrm/admin/extensions',
62 $destination = urlencode( $destination );
63 $this->assign( 'destination', $destination );
69 * @return string Classname of BAO.
71 function getBAOName() {
72 return 'CRM_Core_BAO_Extension';
78 * @return array (reference) of action links
81 if (!(self
::$_links)) {
82 self
::$_links = array(
83 CRM_Core_Action
::ADD
=> array(
84 'name' => ts('Install'),
85 'url' => 'civicrm/admin/extensions',
86 'qs' => 'action=add&id=%%id%%&key=%%key%%',
87 'title' => ts('Install'),
89 CRM_Core_Action
::ENABLE
=> array(
90 'name' => ts('Enable'),
91 'url' => 'civicrm/admin/extensions',
92 'qs' => 'action=enable&id=%%id%%&key=%%key%%',
93 'ref' => 'enable-action',
94 'title' => ts('Enable'),
96 CRM_Core_Action
::DISABLE
=> array(
97 'name' => ts('Disable'),
98 'url' => 'civicrm/admin/extensions',
99 'qs' => 'action=disable&id=%%id%%&key=%%key%%',
100 'title' => ts('Disable'),
102 CRM_Core_Action
::DELETE
=> array(
103 'name' => ts('Uninstall'),
104 'url' => 'civicrm/admin/extensions',
105 'qs' => 'action=delete&id=%%id%%&key=%%key%%',
106 'title' => ts('Uninstall Extension'),
108 CRM_Core_Action
::UPDATE
=> array(
109 'name' => ts('Download'),
110 'url' => 'civicrm/admin/extensions',
111 'qs' => 'action=update&id=%%id%%&key=%%key%%',
112 'title' => ts('Download Extension'),
116 return self
::$_links;
120 * Run the basic page (run essentially starts execution for that page).
126 return parent
::run();
138 $mapper = CRM_Extension_System
::singleton()->getMapper();
139 $manager = CRM_Extension_System
::singleton()->getManager();
141 // build announcements at the top of the page
142 $this->assign('extAddNewEnabled', CRM_Extension_System
::singleton()->getBrowser()->isEnabled());
143 $reqs = CRM_Extension_System
::singleton()->getDownloader()->checkRequirements();
145 $reqs = CRM_Extension_System
::singleton()->getBrowser()->checkRequirements();
148 $reqs = CRM_Extension_System
::singleton()->getDefaultContainer()->checkRequirements();
150 $this->assign('extAddNewReqs', $reqs);
152 $this->assign('extDbUpgrades', CRM_Extension_Upgrades
::hasPending());
153 $this->assign('extDbUpgradeUrl', CRM_Utils_System
::url('civicrm/admin/extensions/upgrade', 'reset=1'));
155 // TODO: Debate whether to immediately detect changes in underlying source tree
156 // $manager->refresh();
158 // build list of local extensions
159 $localExtensionRows = array(); // array($pseudo_id => extended_CRM_Extension_Info)
160 $keys = array_keys($manager->getStatuses());
162 foreach($keys as $key) {
164 $obj = $mapper->keyToInfo($key);
165 } catch (CRM_Extension_Exception
$ex) {
166 CRM_Core_Session
::setStatus(ts('Failed to read extension (%1). Please refresh the extension list.', array(1 => $key)));
170 $row = self
::createExtendedInfo($obj);
171 $row['id'] = $obj->key
;
175 switch ($row['status']) {
176 case CRM_Extension_Manager
::STATUS_UNINSTALLED
:
177 $action +
= CRM_Core_Action
::ADD
;
179 case CRM_Extension_Manager
::STATUS_DISABLED
:
180 $action +
= CRM_Core_Action
::ENABLE
;
181 $action +
= CRM_Core_Action
::DELETE
;
183 case CRM_Extension_Manager
::STATUS_DISABLED_MISSING
:
184 $action +
= CRM_Core_Action
::DELETE
;
186 case CRM_Extension_Manager
::STATUS_INSTALLED
:
187 case CRM_Extension_Manager
::STATUS_INSTALLED_MISSING
:
188 $action +
= CRM_Core_Action
::DISABLE
;
192 // TODO if extbrowser is enabled and extbrowser has newer version than extcontainer,
193 // then $action += CRM_Core_Action::UPDATE
194 $row['action'] = CRM_Core_Action
::formLink(self
::links(),
202 'extension.local.action',
206 // Key would be better to send, but it's not an integer. Moreover, sending the
207 // values to hook_civicrm_links means that you can still get at the key
209 $localExtensionRows[$row['id']] = $row;
211 $this->assign('localExtensionRows', $localExtensionRows);
213 // build list of availabe downloads
214 $remoteExtensionRows = array();
215 foreach (CRM_Extension_System
::singleton()->getBrowser()->getExtensions() as $info) {
216 $row = (array) $info;
217 $row['id'] = $info->key
;
218 $action = CRM_Core_Action
::UPDATE
;
219 $row['action'] = CRM_Core_Action
::formLink(self
::links(),
223 'key' => $row['key'],
227 'extension.remote.action',
231 if (isset($localExtensionRows[$info->key
])) {
232 if (version_compare($localExtensionRows[$info->key
]['version'], $info->version
, '<')) {
233 $row['is_upgradeable'] = TRUE;
236 $remoteExtensionRows[$row['id']] = $row;
238 $this->assign('remoteExtensionRows', $remoteExtensionRows);
242 * Get name of edit form
244 * @return string Classname of edit form.
246 function editForm() {
247 return 'CRM_Admin_Form_Extensions';
253 * @return string name of this page.
255 function editName() {
256 return 'CRM_Admin_Form_Extensions';
264 * @return string user context.
266 function userContext($mode = NULL) {
267 return 'civicrm/admin/extensions';
271 * function to get userContext params
273 * @param int $mode mode that we are in
278 function userContextParams($mode = NULL) {
279 return 'reset=1&action=browse';
283 * Take an extension's raw XML info and add information about the
284 * extension's status on the local system.
286 * The result format resembles the old CRM_Core_Extensions_Extension.
288 * @param CRM_Extension_Info $obj
292 public static function createExtendedInfo(CRM_Extension_Info
$obj) {
293 $mapper = CRM_Extension_System
::singleton()->getMapper();
294 $manager = CRM_Extension_System
::singleton()->getManager();
296 $extensionRow = (array) $obj;
298 $extensionRow['path'] = $mapper->keyToBasePath($obj->key
);
299 } catch (CRM_Extension_Exception
$e) {
300 $extensionRow['path'] = '';
302 $extensionRow['status'] = $manager->getStatus($obj->key
);
304 switch ($extensionRow['status']) {
305 case CRM_Extension_Manager
::STATUS_UNINSTALLED
:
306 $extensionRow['statusLabel'] = ''; // ts('Uninstalled');
308 case CRM_Extension_Manager
::STATUS_DISABLED
:
309 $extensionRow['statusLabel'] = ts('Disabled');
311 case CRM_Extension_Manager
::STATUS_INSTALLED
:
312 $extensionRow['statusLabel'] = ts('Enabled'); // ts('Installed');
314 case CRM_Extension_Manager
::STATUS_DISABLED_MISSING
:
315 $extensionRow['statusLabel'] = ts('Disabled (Missing)');
317 case CRM_Extension_Manager
::STATUS_INSTALLED_MISSING
:
318 $extensionRow['statusLabel'] = ts('Enabled (Missing)'); // ts('Installed');
321 $extensionRow['statusLabel'] = '(' . $extensionRow['status'] . ')';
323 return $extensionRow;