forked from civicrm/civicrm-core
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPseudoConstant.php
216 lines (198 loc) · 5.27 KB
/
PseudoConstant.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<?php
/*
+--------------------------------------------------------------------+
| Copyright CiviCRM LLC. All rights reserved. |
| |
| This work is published under the GNU AGPLv3 license with some |
| permitted exceptions and without any warranty. For full license |
| and copyright information, see https://civicrm.org/licensing |
+--------------------------------------------------------------------+
*/
/**
*
* @package CRM
* @copyright CiviCRM LLC https://civicrm.org/licensing
*/
/**
* @deprecated functions. Use the API instead.
*/
class CRM_Event_PseudoConstant extends CRM_Core_PseudoConstant {
/**
* Get all events
*
* @param int|null $id
* @param bool $all
* @param string|null $condition
* Optional SQL where condition
*
* @return array|string|null
* array of all events if any
*/
public static function event($id = NULL, $all = FALSE, $condition = NULL) {
$options = [];
CRM_Core_PseudoConstant::populate($options,
'CRM_Event_DAO_Event',
$all, 'title', 'is_active', $condition, NULL
);
if ($id) {
return $options[$id] ?? NULL;
}
return $options;
}
/**
* Get all the event participant statuses.
*
*
* @param int|null $id
* Return the specified participant status, or null to return all
* @param string|null $cond
* Optional SQL where condition
* @param string $retColumn
* Tells populate() whether to return 'name' (default) or 'label' values.
*
* @return array|string
* array reference of all participant statuses if any, or single value if $id was passed
*/
public static function participantStatus($id = NULL, $cond = NULL, $retColumn = 'name') {
$statuses = [];
CRM_Core_PseudoConstant::populate($statuses,
'CRM_Event_DAO_ParticipantStatusType',
FALSE, $retColumn, 'is_active', $cond, 'weight'
);
if ($id) {
return $statuses[$id] ?? NULL;
}
return $statuses;
}
/**
* Get participant status class options.
*
* @return array
*/
public static function participantStatusClassOptions() {
return [
'Positive' => ts('Positive'),
'Pending' => ts('Pending'),
'Waiting' => ts('Waiting'),
'Negative' => ts('Negative'),
];
}
/**
* Return a status-type-keyed array of status classes
*
* @return array
* Array of status classes, keyed by status type
*/
public static function participantStatusClass() {
$statusClasses = [];
self::populate($statusClasses, 'CRM_Event_DAO_ParticipantStatusType', TRUE, 'class');
return $statusClasses;
}
/**
* Get all the n participant roles.
*
*
* @param int $id
* @param string|null $cond
* Optional SQL where condition
*
* @return array|string
* array reference of all participant roles if any
*/
public static function participantRole($id = NULL, $cond = NULL) {
$condition = empty($cond) ? NULL : "AND $cond";
$options = CRM_Core_OptionGroup::values('participant_role', FALSE, FALSE, FALSE, $condition);
if ($id) {
return $options[$id] ?? NULL;
}
return $options;
}
/**
* Get all the participant listings.
*
* @deprecated
* @param int $id
* @return array|string
* array reference of all participant listings if any
*/
public static function participantListing($id = NULL) {
CRM_Core_Error::deprecatedFunctionWarning('Function participantListing will be removed');
$options = CRM_Core_OptionGroup::values('participant_listing');
if ($id) {
return $options[$id];
}
return $options;
}
/**
* Get all event types.
*
*
* @param int $id
* @return array|string
* array reference of all event types.
*/
public static function eventType($id = NULL) {
$options = CRM_Core_OptionGroup::values('event_type');
if ($id) {
return $options[$id] ?? NULL;
}
return $options;
}
/**
* Get event template titles.
*
* @param int $id
*
* @return array
* Array of event id → template title pairs
*
* @deprecated Use the API instead
*/
public static function eventTemplates($id = NULL) {
CRM_Core_Error::deprecatedFunctionWarning('Use the api');
$options = [];
CRM_Core_PseudoConstant::populate($options,
'CRM_Event_DAO_Event',
FALSE,
'template_title',
'is_active',
'is_template = 1'
);
if ($id) {
return $options[$id];
}
return $options;
}
/**
* Flush given pseudoconstant so it can be reread from db
* next time it's requested.
*
*
* @param bool|string $name pseudoconstant to be flushed
*/
public static function flush($name = 'cache') {
if (isset(self::$$name)) {
self::$$name = NULL;
}
}
/**
* Get all the Personal campaign pages.
*
* @deprecated
* @param int $id
* @return array
* array reference of all pcp if any
*/
public static function pcPage($id = NULL) {
CRM_Core_Error::deprecatedFunctionWarning('Function pcPage will be removed');
$options = [];
CRM_Core_PseudoConstant::populate($options,
'CRM_PCP_DAO_PCP',
FALSE, 'title'
);
if ($id) {
return $options[$id] ?? NULL;
}
return $options;
}
}