Merge pull request #14249 from yashodha/959_dev
[civicrm-core.git] / CRM / Contribute / PseudoConstant.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
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 |
006389de
TO
25 +--------------------------------------------------------------------+
26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
6b83d5bd 31 * @copyright CiviCRM LLC (c) 2004-2019
6a488035
TO
32 */
33
34/**
347e061b 35 * This class holds all the Pseudo constants that are specific to Contributions.
36 *
37 * This avoids polluting the core class and isolates the mass mailer class.
6a488035
TO
38 */
39class CRM_Contribute_PseudoConstant extends CRM_Core_PseudoConstant {
40
41 /**
100fef9d 42 * Financial types
6a488035 43 * @var array
6a488035
TO
44 */
45 private static $financialType;
46
6a488035 47 /**
100fef9d 48 * Financial types
6a488035 49 * @var array
6a488035
TO
50 */
51 private static $financialAccount;
52
874c9be7 53 /**
353ffa53
TO
54 * Contribution pages
55 * @var array
353ffa53 56 */
6a488035
TO
57 private static $contributionPageActive = NULL;
58
59 /**
100fef9d 60 * Contribution pages
6a488035 61 * @var array
6a488035
TO
62 */
63 private static $contributionPageAll = NULL;
64
65 /**
100fef9d 66 * Payment instruments
6a488035
TO
67 *
68 * @var array
6a488035
TO
69 */
70 private static $paymentInstrument;
71
6a488035 72 /**
100fef9d 73 * Contribution status
6a488035
TO
74 *
75 * @var array
6a488035
TO
76 */
77 private static $contributionStatus;
78
79 /**
80 * Personal campaign pages
81 * @var array
6a488035
TO
82 */
83 private static $pcPage;
84
85 /**
100fef9d 86 * Status of personal campaign page
6a488035 87 * @var array
6a488035
TO
88 */
89 private static $pcpStatus;
90
91aff94c 91 /**
100fef9d 92 * Contribution / financial batches
91aff94c 93 * @var array
91aff94c 94 */
95 private static $batch;
96
6a488035 97 /**
69af118f
MW
98 * @deprecated. Please use the buildOptions() method in the appropriate BAO object.
99 *
3f3a3ba0 100 *
6a488035
TO
101 * Get all the financial types
102 *
6a488035 103 *
100fef9d 104 * @param int $id
d73f286e 105 * @param bool $includeDisabled
da6b46f4 106 *
a6c01b45
CW
107 * @return array
108 * array reference of all financial types if any
6a488035 109 */
d73f286e 110 public static function &financialType($id = NULL, $includeDisabled = FALSE) {
6a488035 111 if (!self::$financialType) {
d73f286e
SL
112 $condition = "";
113 if (!$includeDisabled) {
114 $condition = " is_active = 1 ";
115 }
6a488035
TO
116 CRM_Core_PseudoConstant::populate(
117 self::$financialType,
118 'CRM_Financial_DAO_FinancialType',
119 TRUE,
120 'name',
121 NULL,
122 $condition
123 );
124 }
125
126 if ($id) {
127 $result = CRM_Utils_Array::value($id, self::$financialType);
128 return $result;
129 }
130 return self::$financialType;
131 }
132
133 /**
69af118f 134 * @deprecated. Please use the buildOptions() method in the appropriate BAO object.
8461467c 135 * TODO: buildOptions() doesn't replace this as it doesn't support filtering, which is used with this function.
3f3a3ba0 136 *
8461467c 137 * Get all/filtered array of the financial Accounts
6a488035 138 *
dd244018 139 *
100fef9d 140 * @param int $id
8461467c 141 * @param int $financialAccountTypeId Optional filer to return only financial accounts of type
dd244018
EM
142 * @param string $retrieveColumn
143 * @param string $key
144 *
a6c01b45
CW
145 * @return array
146 * array reference of all financial accounts if any
6a488035 147 */
086ca649 148 public static function &financialAccount($id = NULL, $financialAccountTypeId = NULL, $retrieveColumn = 'name', $key = 'id') {
874c9be7 149 $condition = NULL;
6a488035 150 if ($financialAccountTypeId) {
86bfa4f6 151 $condition = " financial_account_type_id = " . $financialAccountTypeId;
6a488035 152 }
086ca649 153 $cacheKey = "{$id}_{$financialAccountTypeId}_{$retrieveColumn}_{$key}";
6a488035
TO
154 if (!isset(self::$financialAccount[$cacheKey])) {
155 CRM_Core_PseudoConstant::populate(
156 self::$financialAccount[$cacheKey],
157 'CRM_Financial_DAO_FinancialAccount',
158 TRUE,
086ca649 159 $retrieveColumn,
6a488035 160 'is_active',
086ca649
PN
161 $condition,
162 NULL,
163 $key
6a488035
TO
164 );
165
166 }
167 if ($id) {
168 $result = CRM_Utils_Array::value($id, self::$financialAccount[$cacheKey]);
169 return $result;
170 }
171 return self::$financialAccount[$cacheKey];
172 }
173
174 /**
175 * Flush given pseudoconstant so it can be reread from db
176 * nex time it's requested.
177 *
6a488035 178 *
da6b46f4 179 * @param bool|string $name pseudoconstant to be flushed
6a488035 180 */
3fb36592 181 public static function flush($name = 'cache') {
874c9be7 182 if (isset(self::$$name)) {
fa56270d 183 self::$$name = NULL;
353ffa53 184 }
6a488035
TO
185 }
186
187 /**
69af118f 188 * @deprecated. Please use the buildOptions() method in the appropriate BAO object.
3f3a3ba0 189 *
6a488035
TO
190 * Get all the contribution pages
191 *
014c4014
TO
192 * @param int $id
193 * Id of the contribution page.
194 * @param bool $all
195 * Do we want all pages or only active pages.
6a488035 196 *
6a488035 197 *
a6c01b45
CW
198 * @return array
199 * array reference of all contribution pages if any
6a488035
TO
200 */
201 public static function &contributionPage($id = NULL, $all = FALSE) {
202 if ($all) {
203 $cacheVarToUse = &self::$contributionPageAll;
204 }
205 else {
206 $cacheVarToUse = &self::$contributionPageActive;
207 }
208
209 if (!$cacheVarToUse) {
210 CRM_Core_PseudoConstant::populate($cacheVarToUse,
211 'CRM_Contribute_DAO_ContributionPage',
212 $all, 'title'
213 );
214 }
215 if ($id) {
216 $pageTitle = CRM_Utils_Array::value($id, $cacheVarToUse);
217 return $pageTitle;
218 }
219 return $cacheVarToUse;
220 }
221
222 /**
69af118f 223 * @deprecated. Please use the buildOptions() method in the appropriate BAO object.
3f3a3ba0 224 *
6a488035
TO
225 * Get all the payment instruments
226 *
6a488035 227 *
fd31fa4c
EM
228 * @param string $columnName
229 *
a6c01b45
CW
230 * @return array
231 * array reference of all payment instruments if any
6a488035
TO
232 */
233 public static function &paymentInstrument($columnName = 'label') {
234 if (!isset(self::$paymentInstrument[$columnName])) {
235 self::$paymentInstrument[$columnName] = CRM_Core_OptionGroup::values('payment_instrument',
236 FALSE, FALSE, FALSE, NULL, $columnName
237 );
238 }
239
240 return self::$paymentInstrument[$columnName];
241 }
242
243 /**
fe482240 244 * Get all the valid accepted credit cards.
6a488035 245 *
6a488035 246 *
a6c01b45
CW
247 * @return array
248 * array reference of all payment instruments if any
6a488035
TO
249 */
250 public static function &creditCard() {
3f3a3ba0 251 return CRM_Core_OptionGroup::values('accept_creditcard', FALSE, FALSE, FALSE, NULL, 'label', TRUE, FALSE, 'name');
6a488035
TO
252 }
253
254 /**
fe482240 255 * Get all premiums.
6a488035 256 *
6a488035 257 *
100fef9d 258 * @param int $pageID
a6c01b45
CW
259 * @return array
260 * array of all Premiums if any
6a488035
TO
261 */
262 public static function products($pageID = NULL) {
be2fb01f 263 $products = [];
353ffa53 264 $dao = new CRM_Contribute_DAO_Product();
6a488035
TO
265 $dao->is_active = 1;
266 $dao->orderBy('id');
267 $dao->find();
268
269 while ($dao->fetch()) {
270 $products[$dao->id] = $dao->name;
271 }
272 if ($pageID) {
353ffa53 273 $dao = new CRM_Contribute_DAO_Premium();
6a488035 274 $dao->entity_table = 'civicrm_contribution_page';
353ffa53 275 $dao->entity_id = $pageID;
6a488035
TO
276 $dao->find(TRUE);
277 $premiumID = $dao->id;
278
be2fb01f 279 $productID = [];
6a488035
TO
280
281 $dao = new CRM_Contribute_DAO_PremiumsProduct();
282 $dao->premiums_id = $premiumID;
283 $dao->find();
284 while ($dao->fetch()) {
285 $productID[$dao->product_id] = $dao->product_id;
286 }
287
be2fb01f 288 $tempProduct = [];
6a488035
TO
289 foreach ($products as $key => $value) {
290 if (!array_key_exists($key, $productID)) {
291 $tempProduct[$key] = $value;
292 }
293 }
294
295 return $tempProduct;
296 }
297
298 return $products;
299 }
300
301 /**
fe482240 302 * Get all the contribution statuses.
6a488035 303 *
6a488035 304 *
100fef9d 305 * @param int $id
da6b46f4 306 * @param string $columnName
a6c01b45
CW
307 * @return array
308 * array reference of all contribution statuses
6a488035
TO
309 */
310 public static function &contributionStatus($id = NULL, $columnName = 'label') {
311 $cacheKey = $columnName;
312 if (!isset(self::$contributionStatus[$cacheKey])) {
313 self::$contributionStatus[$cacheKey] = CRM_Core_OptionGroup::values('contribution_status',
314 FALSE, FALSE, FALSE, NULL, $columnName
315 );
316 }
317 $result = self::$contributionStatus[$cacheKey];
318 if ($id) {
319 $result = CRM_Utils_Array::value($id, $result);
320 }
321
322 return $result;
323 }
324
325 /**
fe482240 326 * Get all the Personal campaign pages.
6a488035 327 *
6a488035 328 *
2a6da8d7 329 * @param null $pageType
100fef9d 330 * @param int $id
2a6da8d7 331 *
a6c01b45
CW
332 * @return array
333 * array reference of all pcp if any
6a488035
TO
334 */
335 public static function &pcPage($pageType = NULL, $id = NULL) {
336 if (!isset(self::$pcPage[$pageType])) {
337 if ($pageType) {
338 $params = "page_type='{$pageType}'";
339 }
340 else {
341 $params = '';
342 }
343 CRM_Core_PseudoConstant::populate(self::$pcPage[$pageType],
344 'CRM_PCP_DAO_PCP',
345 FALSE, 'title', 'is_active', $params
346 );
347 }
348 $result = self::$pcPage[$pageType];
349 if ($id) {
350 return $result = CRM_Utils_Array::value($id, $result);
351 }
352
353 return $result;
354 }
355
356 /**
357 * Get all PCP Statuses.
358 *
359 * The static array pcpStatus is returned
360 *
6a488035 361 *
2a6da8d7 362 * @param string $column
a6c01b45
CW
363 * @return array
364 * array reference of all PCP activity statuses
6a488035
TO
365 */
366 public static function &pcpStatus($column = 'label') {
367 if (NULL === self::$pcpStatus) {
be2fb01f 368 self::$pcpStatus = [];
6a488035
TO
369 }
370 if (!array_key_exists($column, self::$pcpStatus)) {
be2fb01f 371 self::$pcpStatus[$column] = [];
6a488035
TO
372
373 self::$pcpStatus[$column] = CRM_Core_OptionGroup::values('pcp_status', FALSE,
374 FALSE, FALSE, NULL, $column
375 );
376 }
377 return self::$pcpStatus[$column];
378 }
379
380 /**
876b8ab0 381 * Get financial account for a Financial type.
6a488035 382 *
928a340b 383 * @deprecated use the alternative with caching
384 * CRM_Financial_BAO_FinancialAccount::getFinancialAccountForFinancialTypeByRelationship
6a488035 385 *
876b8ab0
PN
386 * @param int $entityId
387 * @param string $accountRelationType
31484b44 388 * @param string $entityTable
74afdc40 389 * @param string $returnField
876b8ab0 390 * @return int
6a488035 391 */
74afdc40 392 public static function getRelationalFinancialAccount($entityId, $accountRelationType, $entityTable = 'civicrm_financial_type', $returnField = 'financial_account_id') {
be2fb01f
CW
393 $params = [
394 'return' => [$returnField],
31484b44 395 'entity_table' => $entityTable,
876b8ab0 396 'entity_id' => $entityId,
be2fb01f 397 ];
74afdc40
PN
398 if ($accountRelationType) {
399 $params['account_relationship.name'] = $accountRelationType;
400 }
401 $result = civicrm_api3('EntityFinancialAccount', 'get', $params);
876b8ab0
PN
402 if (!$result['count']) {
403 return NULL;
6a488035 404 }
74afdc40 405 return $result['values'][$result['id']][$returnField];
6a488035 406 }
91aff94c 407
408 /**
fe482240 409 * Get all batches.
91aff94c 410 *
91aff94c 411 *
100fef9d 412 * @param int $id
a6c01b45
CW
413 * @return array
414 * array reference of all batches if any
91aff94c 415 */
416 public static function &batch($id = NULL) {
417 if (!self::$batch) {
418 $orderBy = " id DESC ";
419 CRM_Core_PseudoConstant::populate(
420 self::$batch,
421 'CRM_Batch_DAO_Batch',
422 TRUE,
423 'title',
424 NULL,
425 NULL,
426 $orderBy
427 );
428 }
429
430 if ($id) {
431 $result = CRM_Utils_Array::value($id, self::$batch);
432 return $result;
433 }
434 return self::$batch;
435 }
96025800 436
6a488035 437}