INFRA-132 - Put space after flow-control (if/switch/for/foreach/while)
[civicrm-core.git] / CRM / Case / Info.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 * This class introduces component to the system and provides all the
30 * information about it. It needs to extend CRM_Core_Component_Info
31 * abstract class.
32 *
33 * @package CRM
34 * @copyright CiviCRM LLC (c) 2004-2014
35 * $Id$
36 *
37 */
38 class CRM_Case_Info extends CRM_Core_Component_Info {
39
40
41 // docs inherited from interface
42 protected $keyword = 'case';
43
44 // docs inherited from interface
45 /**
46 * @return array
47 */
48 public function getInfo() {
49 return array(
50 'name' => 'CiviCase',
51 'translatedName' => ts('CiviCase'),
52 'title' => ts('CiviCase Engine'),
53 'search' => 1,
54 'showActivitiesInCore' => 0,
55 );
56 }
57
58 /**
59 * {@inheritDoc}
60 */
61 public function getAngularModules() {
62 $result = array();
63 $result['crmCaseType'] = array(
64 'ext' => 'civicrm',
65 'js' => array('js/angular-crmCaseType.js'),
66 'css' => array('css/angular-crmCaseType.css'),
67 );
68
69 CRM_Core_Resources::singleton()->addSetting(array(
70 'crmCaseType' => array(
71 'REL_TYPE_CNAME' => CRM_Case_XMLProcessor::REL_TYPE_CNAME,
72 ),
73 ));
74 return $result;
75 }
76
77 // docs inherited from interface
78 /**
79 * @return array
80 * @throws CRM_Core_Exception
81 */
82 public function getManagedEntities() {
83 $entities = array_merge(
84 CRM_Case_ManagedEntities::createManagedCaseTypes(),
85 CRM_Case_ManagedEntities::createManagedActivityTypes(CRM_Case_XMLRepository::singleton(), CRM_Core_ManagedEntities::singleton()),
86 CRM_Case_ManagedEntities::createManagedRelationshipTypes(CRM_Case_XMLRepository::singleton(), CRM_Core_ManagedEntities::singleton())
87 );
88 return $entities;
89 }
90
91 // docs inherited from interface
92 /**
93 * @param bool $getAllUnconditionally
94 *
95 * @return array
96 */
97 public function getPermissions($getAllUnconditionally = FALSE) {
98 return array(
99 'delete in CiviCase',
100 'administer CiviCase',
101 'access my cases and activities',
102 'access all cases and activities',
103 'add cases',
104 );
105 }
106
107 /**
108 * {@inheritdoc}
109 */
110 public function getReferenceCounts($dao) {
111 $result = array();
112 if ($dao instanceof CRM_Core_DAO_OptionValue) {
113 /** @var $dao CRM_Core_DAO_OptionValue */
114 $activity_type_gid = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionGroup', 'activity_type', 'id', 'name');
115 if ($activity_type_gid == $dao->option_group_id) {
116 $count = CRM_Case_XMLRepository::singleton()
117 ->getActivityReferenceCount($dao->name);
118 if ($count > 0) {
119 $result[] = array(
120 'name' => 'casetypexml:activities',
121 'type' => 'casetypexml',
122 'count' => $count,
123 );
124 }
125 }
126 }
127 elseif ($dao instanceof CRM_Contact_DAO_RelationshipType) {
128 /** @var $dao CRM_Contact_DAO_RelationshipType */
129 $count = CRM_Case_XMLRepository::singleton()
130 ->getRelationshipReferenceCount($dao->{CRM_Case_XMLProcessor::REL_TYPE_CNAME});
131 if ($count > 0) {
132 $result[] = array(
133 'name' => 'casetypexml:relationships',
134 'type' => 'casetypexml',
135 'count' => $count,
136 );
137 }
138 }
139 return $result;
140 }
141
142 // docs inherited from interface
143 /**
144 * @return array
145 */
146 public function getUserDashboardElement() {
147 return array();
148 }
149
150 // docs inherited from interface
151 /**
152 * @return array
153 */
154 public function registerTab() {
155 return array(
156 'title' => ts('Cases'),
157 'url' => 'case',
158 'weight' => 50,
159 );
160 }
161
162 // docs inherited from interface
163 /**
164 * @return array
165 */
166 public function registerAdvancedSearchPane() {
167 return array(
168 'title' => ts('Cases'),
169 'weight' => 50,
170 );
171 }
172
173 // docs inherited from interface
174 /**
175 * @return null
176 */
177 public function getActivityTypes() {
178 return NULL;
179 }
180
181 // add shortcut to Create New
182 /**
183 * @param $shortCuts
184 */
185 public function creatNewShortcut(&$shortCuts) {
186 if (CRM_Core_Permission::check('access all cases and activities') ||
187 CRM_Core_Permission::check('add cases')
188 ) {
189 $atype = CRM_Core_OptionGroup::getValue('activity_type',
190 'Open Case',
191 'name'
192 );
193 if ($atype) {
194 $shortCuts = array_merge($shortCuts, array(
195 array(
196 'path' => 'civicrm/case/add',
197 'query' => "reset=1&action=add&atype=$atype&context=standalone",
198 'ref' => 'new-case',
199 'title' => ts('Case'),
200 )));
201 }
202 }
203 }
204
205 /**
206 * (Setting Callback)
207 * Respond to changes in the "enable_components" setting
208 *
209 * If CiviCase is being enabled, load the case related sample data
210 *
211 * @param array $oldValue
212 * List of component names.
213 * @param array $newValue
214 * List of component names.
215 * @param array $metadata
216 * Specification of the setting (per *.settings.php).
217 */
218 public static function onToggleComponents($oldValue, $newValue, $metadata) {
219 if (
220 in_array('CiviCase', $newValue)
221 &&
222 (!$oldValue || !in_array('CiviCase', $oldValue))
223 ) {
224 $pathToCaseSampleTpl = __DIR__ . '/xml/configuration.sample/';
225 $config = CRM_Core_Config::singleton();
226 CRM_Admin_Form_Setting_Component::loadCaseSampleData($config->dsn, $pathToCaseSampleTpl . 'case_sample.mysql.tpl');
227 if (!CRM_Case_BAO_Case::createCaseViews()) {
228 $msg = ts("Could not create the MySQL views for CiviCase. Your mysql user needs to have the 'CREATE VIEW' permission");
229 CRM_Core_Error::fatal($msg);
230 }
231 }
232 }
233 }