Merge pull request #760 from JoeMurray/CRM-12603
[civicrm-core.git] / CRM / Grant / PseudoConstant.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.3 |
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 holds all the Pseudo constants that are specific to Grant. This avoids
38 * polluting the core class and isolates the Grant
39 */
40class CRM_Grant_PseudoConstant extends CRM_Core_PseudoConstant {
41
42 /**
43 * Grant Status
44 *
45 * @var array
46 * @static
47 */
48 private static $grantStatus;
49
50 /**
51 * grant Type
52 *
53 * @var array
54 * @static
55 */
56 private static $grantType;
57
58 /**
59 * Get all the n grant statuses
60 *
61 * @access public
62 *
63 * @return array - array reference of all grant statuses if any
64 * @static
65 */
66 public static function &grantStatus($id = NULL) {
67 if (!self::$grantStatus) {
68 self::$grantStatus = array();
69 self::$grantStatus = CRM_Core_OptionGroup::values('grant_status');
70 }
71
72 if ($id) {
73 return self::$grantStatus[$id];
74 }
75
76 return self::$grantStatus;
77 }
78
79 /**
80 * Get all the n grant types
81 *
82 * @access public
83 *
84 * @return array - array reference of all grant types if any
85 * @static
86 */
87 public static function &grantType($id = NULL) {
88 if (!self::$grantType) {
89 self::$grantType = array();
90 self::$grantType = CRM_Core_OptionGroup::values('grant_type');
91 }
92
93 If ($id) {
94 return self::$grantType[$id];
95 }
96
97 return self::$grantType;
98 }
99
100 /**
101 * Flush given pseudoconstant so it can be reread from db
102 * nex time it's requested.
103 *
104 * @access public
105 * @static
106 *
107 * @param boolean $name pseudoconstant to be flushed
108 *
109 */
110 public static function flush($name) {
fa56270d
CW
111 if (isset(self::$$name)) {
112 self::$$name = NULL;
113 }
6a488035
TO
114 }
115}
116