INFRA-132 - Comment format cleanup
[civicrm-core.git] / CRM / Case / PseudoConstant.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 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2014
32 * $Id$
33 *
34 */
35
36 /**
37 * This class holds all the Pseudo constants that are specific for CiviCase.
38 *
39 */
40 class CRM_Case_PseudoConstant extends CRM_Core_PseudoConstant {
41
42 /**
43 * Case statues
44 * @var array
45 * @static
46 */
47 static $caseStatus = array();
48
49 /**
50 * Redaction rules
51 * @var array
52 * @static
53 */
54 static $redactionRule;
55
56 /**
57 * Case type
58 * @var array
59 * @static
60 */
61 static $caseType = array();
62
63 /**
64 * Encounter Medium
65 * @var array
66 * @static
67 */
68 static $encounterMedium = array();
69
70 /**
71 * Activity type
72 * @var array
73 * @static
74 */
75 static $activityTypeList = array();
76
77 /**
78 * Get all the case statues
79 *
80 *
81 * @param string $column
82 * @param bool $onlyActive
83 * @param null $condition
84 * @param bool $fresh
85 *
86 * @return array
87 * array reference of all case statues
88 * @static
89 */
90 public static function caseStatus($column = 'label', $onlyActive = TRUE, $condition = NULL, $fresh = FALSE) {
91 $cacheKey = "{$column}_" . (int) $onlyActive;
92 if (!$condition) {
93 $condition = 'AND filter = 0';
94 }
95
96 if (!isset(self::$caseStatus[$cacheKey]) || $fresh) {
97 self::$caseStatus[$cacheKey] = CRM_Core_OptionGroup::values('case_status',
98 FALSE, FALSE, FALSE, $condition,
99 $column, $onlyActive, $fresh
100 );
101 }
102
103 return self::$caseStatus[$cacheKey];
104 }
105
106 /**
107 * Get all the redaction rules
108 *
109 *
110 * @param null $filter
111 *
112 * @return array
113 * array reference of all redaction rules
114 * @static
115 */
116
117 public static function redactionRule($filter = NULL) {
118 // if ( ! self::$redactionRule ) {
119 self::$redactionRule = array();
120
121 if ($filter === 0) {
122 $condition = " AND (v.filter = 0 OR v.filter IS NULL)";
123 }
124 elseif ($filter === 1) {
125 $condition = " AND v.filter = 1";
126 }
127 elseif ($filter === NULL) {
128 $condition = NULL;
129 }
130
131 self::$redactionRule = CRM_Core_OptionGroup::values('redaction_rule', TRUE, FALSE, FALSE, $condition);
132 // }
133 return self::$redactionRule;
134 }
135
136 /**
137 * Get all the case type
138 *
139 *
140 * @param string $column
141 * @param bool $onlyActive
142 *
143 * @return array
144 * array reference of all case type
145 * @static
146 */
147 public static function caseType($column = 'title', $onlyActive = TRUE) {
148 if ($onlyActive) {
149 $condition = " is_active = 1 ";
150 }
151 else {
152 $condition = NULL;
153 }
154 $caseType = NULL;
155 // FIXME: deprecated?
156 CRM_Core_PseudoConstant::populate(
157 $caseType,
158 'CRM_Case_DAO_CaseType',
159 TRUE,
160 $column,
161 '',
162 $condition,
163 'weight',
164 'id'
165 );
166
167 return $caseType;
168 }
169
170 /**
171 * Get all the Encounter Medium
172 *
173 *
174 * @param string $column
175 * @param bool $onlyActive
176 *
177 * @return array
178 * array reference of all Encounter Medium.
179 * @static
180 */
181 public static function encounterMedium($column = 'label', $onlyActive = TRUE) {
182 $cacheKey = "{$column}_" . (int) $onlyActive;
183 if (!isset(self::$encounterMedium[$cacheKey])) {
184 self::$encounterMedium[$cacheKey] = CRM_Core_OptionGroup::values('encounter_medium',
185 FALSE, FALSE, FALSE, NULL,
186 $column, $onlyActive
187 );
188 }
189
190 return self::$encounterMedium[$cacheKey];
191 }
192
193 /**
194 * Get all Activity types for the CiviCase component
195 *
196 * The static array activityType is returned
197 *
198 * @param bool $indexName
199 * True return activity name in array.
200 * key else activity id as array key.
201 *
202 * @param bool $all
203 *
204 * @static
205 *
206 * @return array
207 * array reference of all activity types.
208 */
209 public static function &caseActivityType($indexName = TRUE, $all = FALSE) {
210 $cache = (int) $indexName . '_' . (int) $all;
211
212 if (!array_key_exists($cache, self::$activityTypeList)) {
213 self::$activityTypeList[$cache] = array();
214
215 $query = "
216 SELECT v.label as label ,v.value as value, v.name as name, v.description as description
217 FROM civicrm_option_value v,
218 civicrm_option_group g
219 WHERE v.option_group_id = g.id
220 AND g.name = 'activity_type'
221 AND v.is_active = 1
222 AND g.is_active = 1";
223
224 if (!$all) {
225 $componentId = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_Component',
226 'CiviCase',
227 'id', 'name'
228 );
229 $query .= " AND v.component_id = {$componentId} ";
230 }
231
232 $query .= " ORDER BY v.weight";
233
234 $dao = CRM_Core_DAO::executeQuery($query);
235
236 $activityTypes = array();
237 while ($dao->fetch()) {
238 if ($indexName) {
239 $index = $dao->name;
240 }
241 else {
242 $index = $dao->value;
243 }
244 $activityTypes[$index] = array();
245 $activityTypes[$index]['id'] = $dao->value;
246 $activityTypes[$index]['label'] = $dao->label;
247 $activityTypes[$index]['name'] = $dao->name;
248 $activityTypes[$index]['description'] = $dao->description;
249 }
250 self::$activityTypeList[$cache] = $activityTypes;
251 }
252 return self::$activityTypeList[$cache];
253 }
254
255 /**
256 * Flush given pseudoconstant so it can be reread from db
257 * next time it's requested.
258 *
259 * @static
260 *
261 * @param bool|string $name pseudoconstant to be flushed
262 */
263 public static function flush($name = 'cache') {
264 if (isset(self::$$name)) {
265 self::$$name = NULL;
266 }
267 }
268 }