CRM-14850 fix admin form to support change from config to setting
[civicrm-core.git] / CRM / Admin / Form / Setting / Component.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
06b69b18 4 | CiviCRM version 4.5 |
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 Component
38 */
39class CRM_Admin_Form_Setting_Component extends CRM_Admin_Form_Setting {
40 protected $_components;
41
42 /**
43 * Function to build the form
44 *
355ba699 45 * @return void
6a488035
TO
46 * @access public
47 */
48 public function buildQuickForm() {
49 CRM_Utils_System::setTitle(ts('Settings - Enable Components'));
50 $components = $this->_getComponentSelectValues();
51 $include = &$this->addElement('advmultiselect', 'enableComponents',
52 ts('Components') . ' ', $components,
53 array(
54 'size' => 5,
55 'style' => 'width:150px',
56 'class' => 'advmultiselect',
57 )
58 );
59
60 $include->setButtonAttributes('add', array('value' => ts('Enable >>')));
61 $include->setButtonAttributes('remove', array('value' => ts('<< Disable')));
62
63 $this->addFormRule(array('CRM_Admin_Form_Setting_Component', 'formRule'), $this);
64
65 parent::buildQuickForm();
66 }
67
68 /**
69 * global form rule
70 *
71 * @param array $fields the input form values
72 * @param array $files the uploaded files if any
73 * @param array $options additional user data
74 *
75 * @return true if no errors, else array of errors
76 * @access public
77 * @static
78 */
31195a09 79 static function formRule($fields, $files, $options) {
6a488035
TO
80 $errors = array();
81
6f98c8ae 82 if (array_key_exists('enableComponents', $fields) && is_array($fields['enableComponents'])) {
6a488035
TO
83 if (in_array('CiviPledge', $fields['enableComponents']) &&
84 !in_array('CiviContribute', $fields['enableComponents'])
85 ) {
86 $errors['enableComponents'] = ts('You need to enable CiviContribute before enabling CiviPledge.');
87 }
88 if (in_array('CiviCase', $fields['enableComponents']) &&
89 !CRM_Core_DAO::checkTriggerViewPermission(TRUE, FALSE)
90 ) {
91 $errors['enableComponents'] = ts('CiviCase requires CREATE VIEW and DROP VIEW permissions for the database.');
92 }
93 }
94
95 return $errors;
96 }
97
e0ef6999
EM
98 /**
99 * @return array
100 */
6a488035
TO
101 private function _getComponentSelectValues() {
102 $ret = array();
103 $this->_components = CRM_Core_Component::getComponents();
104 foreach ($this->_components as $name => $object) {
105 $ret[$name] = $object->info['translatedName'];
106 }
107
108 return $ret;
109 }
110
111 public function postProcess() {
112 $params = $this->controller->exportValues($this->_name);
113
2bc3bd8f 114 CRM_Case_Info::onToggleComponents($this->_defaults['enableComponents'], $params['enableComponents'], NULL);
6a488035
TO
115 parent::commonProcess($params);
116
117 // reset navigation when components are enabled / disabled
118 CRM_Core_BAO_Navigation::resetNavigation();
119 }
120
e0ef6999
EM
121 /**
122 * @param $dsn
123 * @param $fileName
124 * @param bool $lineMode
125 */
e6d720bb 126 public static function loadCaseSampleData($dsn, $fileName, $lineMode = FALSE) {
6a488035
TO
127 global $crmPath;
128
129 $db = &DB::connect($dsn);
130 if (PEAR::isError($db)) {
131 die("Cannot open $dsn: " . $db->getMessage());
132 }
133
134 if (!$lineMode) {
135 $string = file_get_contents($fileName);
136
137 // change \r\n to fix windows issues
138 $string = str_replace("\r\n", "\n", $string);
139
140 //get rid of comments starting with # and --
141
142 $string = preg_replace("/^#[^\n]*$/m", "\n", $string);
143 $string = preg_replace("/^(--[^-]).*/m", "\n", $string);
144
145 $queries = preg_split('/;$/m', $string);
146 foreach ($queries as $query) {
147 $query = trim($query);
148 if (!empty($query)) {
149 $res = &$db->query($query);
150 if (PEAR::isError($res)) {
151 die("Cannot execute $query: " . $res->getMessage());
152 }
153 }
154 }
155 }
156 else {
157 $fd = fopen($fileName, "r");
158 while ($string = fgets($fd)) {
159 $string = preg_replace("/^#[^\n]*$/m", "\n", $string);
160 $string = preg_replace("/^(--[^-]).*/m", "\n", $string);
161
162 $string = trim($string);
163 if (!empty($string)) {
164 $res = &$db->query($string);
165 if (PEAR::isError($res)) {
166 die("Cannot execute $string: " . $res->getMessage());
167 }
168 }
169 }
170 }
171 }
172}
173