CRM-12578 - Add configuration to disable civicrm.css. Deprecate extras.css.
[civicrm-core.git] / CRM / Admin / Form / Setting / Component.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 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 *
45 * @return None
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
98 private function _getComponentSelectValues() {
99 $ret = array();
100 $this->_components = CRM_Core_Component::getComponents();
101 foreach ($this->_components as $name => $object) {
102 $ret[$name] = $object->info['translatedName'];
103 }
104
105 return $ret;
106 }
107
108 public function postProcess() {
109 $params = $this->controller->exportValues($this->_name);
110
6a488035
TO
111 // if CiviCase is being enabled,
112 // load the case related sample data
113 if (in_array('CiviCase', $params['enableComponents']) &&
114 !in_array('CiviCase', $this->_defaults['enableComponents'])
115 ) {
116 $config = CRM_Core_Config::singleton();
117 CRM_Admin_Form_Setting_Component::loadCaseSampleData($config->dsn, $config->sqlDir . 'case_sample.mysql');
118 CRM_Admin_Form_Setting_Component::loadCaseSampleData($config->dsn, $config->sqlDir . 'case_sample1.mysql');
119 if (!CRM_Case_BAO_Case::createCaseViews()) {
1e88c084
DL
120 $msg = ts("Could not create the MySQL views for CiviCase. Your mysql user needs to have the 'CREATE VIEW' permission");
121 CRM_Core_Error::fatal($msg);
6a488035
TO
122 }
123 }
124 parent::commonProcess($params);
125
126 // reset navigation when components are enabled / disabled
127 CRM_Core_BAO_Navigation::resetNavigation();
128 }
129
130 public function loadCaseSampleData($dsn, $fileName, $lineMode = FALSE) {
131 global $crmPath;
132
133 $db = &DB::connect($dsn);
134 if (PEAR::isError($db)) {
135 die("Cannot open $dsn: " . $db->getMessage());
136 }
137
138 if (!$lineMode) {
139 $string = file_get_contents($fileName);
140
141 // change \r\n to fix windows issues
142 $string = str_replace("\r\n", "\n", $string);
143
144 //get rid of comments starting with # and --
145
146 $string = preg_replace("/^#[^\n]*$/m", "\n", $string);
147 $string = preg_replace("/^(--[^-]).*/m", "\n", $string);
148
149 $queries = preg_split('/;$/m', $string);
150 foreach ($queries as $query) {
151 $query = trim($query);
152 if (!empty($query)) {
153 $res = &$db->query($query);
154 if (PEAR::isError($res)) {
155 die("Cannot execute $query: " . $res->getMessage());
156 }
157 }
158 }
159 }
160 else {
161 $fd = fopen($fileName, "r");
162 while ($string = fgets($fd)) {
163 $string = preg_replace("/^#[^\n]*$/m", "\n", $string);
164 $string = preg_replace("/^(--[^-]).*/m", "\n", $string);
165
166 $string = trim($string);
167 if (!empty($string)) {
168 $res = &$db->query($string);
169 if (PEAR::isError($res)) {
170 die("Cannot execute $string: " . $res->getMessage());
171 }
172 }
173 }
174 }
175 }
176}
177