Merge pull request #19618 from colemanw/searchAliasFix
[civicrm-core.git] / CRM / Member / DAO / Membership.php
CommitLineData
e501603b 1<?php
c3fc2621 2
e501603b
TO
3/**
4 * @package CRM
ca5cec67 5 * @copyright CiviCRM LLC https://civicrm.org/licensing
e501603b
TO
6 *
7 * Generated from xml/schema/CRM/Member/Membership.xml
8 * DO NOT EDIT. Generated by CRM_Core_CodeGen
1fe423d6 9 * (GenCodeChecksum:689a972f40e7180422d4ca73600a7577)
e501603b 10 */
c3fc2621 11
f41f0342 12/**
c3fc2621 13 * Database access object for the Membership entity.
f41f0342 14 */
e501603b 15class CRM_Member_DAO_Membership extends CRM_Core_DAO {
929a1c14
CW
16 const EXT = 'civicrm';
17 const TABLE_ADDED = '1.5';
d31fb4e3 18 const COMPONENT = 'CiviMember';
c3fc2621 19
e501603b 20 /**
f41f0342 21 * Static instance to hold the table name.
e501603b
TO
22 *
23 * @var string
24 */
fa45b5b9 25 public static $_tableName = 'civicrm_membership';
c3fc2621 26
449c4e6b
CW
27 /**
28 * Icon associated with this entity.
29 *
30 * @var string
31 */
32 public static $_icon = 'fa-id-badge';
33
e501603b 34 /**
f41f0342 35 * Should CiviCRM log any modifications to this table in the civicrm_log table.
e501603b 36 *
c3fc2621 37 * @var bool
e501603b 38 */
fa45b5b9 39 public static $_log = TRUE;
c3fc2621 40
a7bd99ff
CW
41 /**
42 * Paths for accessing this entity in the UI.
43 *
44 * @var string[]
45 */
46 protected static $_paths = [
5c385299 47 'add' => 'civicrm/member/add?reset=1&action=add&context=standalone',
a7bd99ff 48 'view' => 'civicrm/contact/view/membership?reset=1&action=view&id=[id]&cid=[contact_id]',
5c385299 49 'update' => 'civicrm/contact/view/membership?reset=1&action=update&id=[id]&cid=[contact_id]',
a7bd99ff
CW
50 'delete' => 'civicrm/contact/view/membership?reset=1&action=delete&id=[id]&cid=[contact_id]',
51 ];
52
e501603b 53 /**
2cbbebe8 54 * Membership ID
e501603b 55 *
e6ca0a57 56 * @var int
e501603b
TO
57 */
58 public $id;
c3fc2621 59
e501603b
TO
60 /**
61 * FK to Contact ID
62 *
e6ca0a57 63 * @var int
e501603b
TO
64 */
65 public $contact_id;
c3fc2621 66
e501603b
TO
67 /**
68 * FK to Membership Type
69 *
e6ca0a57 70 * @var int
e501603b
TO
71 */
72 public $membership_type_id;
c3fc2621 73
e501603b
TO
74 /**
75 * Beginning of initial membership period (member since...).
76 *
77 * @var date
78 */
79 public $join_date;
c3fc2621 80
e501603b
TO
81 /**
82 * Beginning of current uninterrupted membership period.
83 *
84 * @var date
85 */
86 public $start_date;
c3fc2621 87
e501603b
TO
88 /**
89 * Current membership period expire date.
90 *
91 * @var date
92 */
93 public $end_date;
c3fc2621 94
e501603b 95 /**
e501603b
TO
96 * @var string
97 */
98 public $source;
c3fc2621 99
e501603b
TO
100 /**
101 * FK to Membership Status
102 *
e6ca0a57 103 * @var int
e501603b
TO
104 */
105 public $status_id;
c3fc2621 106
e501603b
TO
107 /**
108 * Admin users may set a manual status which overrides the calculated status. When this flag is true, automated status update scripts should NOT modify status for the record.
109 *
e6ca0a57 110 * @var bool
e501603b
TO
111 */
112 public $is_override;
c3fc2621 113
e136f704
O
114 /**
115 * Then end date of membership status override if 'Override until selected date' override type is selected.
116 *
117 * @var date
118 */
119 public $status_override_end_date;
120
e501603b
TO
121 /**
122 * Optional FK to Parent Membership.
123 *
e6ca0a57 124 * @var int
e501603b
TO
125 */
126 public $owner_membership_id;
c3fc2621 127
e501603b
TO
128 /**
129 * Maximum number of related memberships (membership_type override).
130 *
131 * @var int
132 */
133 public $max_related;
c3fc2621 134
e501603b 135 /**
e6ca0a57 136 * @var bool
e501603b
TO
137 */
138 public $is_test;
c3fc2621 139
e501603b 140 /**
e6ca0a57 141 * @var bool
e501603b
TO
142 */
143 public $is_pay_later;
c3fc2621 144
e501603b
TO
145 /**
146 * Conditional foreign key to civicrm_contribution_recur id. Each membership in connection with a recurring contribution carries a foreign key to the recurring contribution record. This assumes we can track these processor initiated events.
147 *
e6ca0a57 148 * @var int
e501603b
TO
149 */
150 public $contribution_recur_id;
c3fc2621 151
e501603b
TO
152 /**
153 * The campaign for which this membership is attached.
154 *
e6ca0a57 155 * @var int
e501603b
TO
156 */
157 public $campaign_id;
c3fc2621 158
e501603b 159 /**
f41f0342 160 * Class constructor.
e501603b 161 */
c3fc2621 162 public function __construct() {
e501603b
TO
163 $this->__table = 'civicrm_membership';
164 parent::__construct();
165 }
c3fc2621 166
449c4e6b
CW
167 /**
168 * Returns localized title of this entity.
7b66c3b5
AH
169 *
170 * @param bool $plural
171 * Whether to return the plural version of the title.
449c4e6b 172 */
7b66c3b5
AH
173 public static function getEntityTitle($plural = FALSE) {
174 return $plural ? ts('Memberships') : ts('Membership');
449c4e6b
CW
175 }
176
e501603b 177 /**
f41f0342 178 * Returns foreign keys and entity references.
e501603b
TO
179 *
180 * @return array
181 * [CRM_Core_Reference_Interface]
182 */
c3fc2621 183 public static function getReferenceColumns() {
346aaaba 184 if (!isset(Civi::$statics[__CLASS__]['links'])) {
fa45b5b9 185 Civi::$statics[__CLASS__]['links'] = static::createReferenceColumns(__CLASS__);
c3fc2621
CW
186 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'contact_id', 'civicrm_contact', 'id');
187 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'membership_type_id', 'civicrm_membership_type', 'id');
188 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'status_id', 'civicrm_membership_status', 'id');
189 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'owner_membership_id', 'civicrm_membership', 'id');
190 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'contribution_recur_id', 'civicrm_contribution_recur', 'id');
191 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'campaign_id', 'civicrm_campaign', 'id');
346aaaba 192 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
e501603b 193 }
346aaaba 194 return Civi::$statics[__CLASS__]['links'];
e501603b 195 }
c3fc2621 196
e501603b
TO
197 /**
198 * Returns all the column names of this table
199 *
200 * @return array
201 */
c3fc2621 202 public static function &fields() {
346aaaba 203 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
c3fc2621
CW
204 Civi::$statics[__CLASS__]['fields'] = [
205 'membership_id' => [
e501603b
TO
206 'name' => 'id',
207 'type' => CRM_Utils_Type::T_INT,
c3fc2621 208 'title' => ts('Membership ID'),
2cbbebe8 209 'description' => ts('Membership ID'),
c3fc2621
CW
210 'required' => TRUE,
211 'import' => TRUE,
e501603b
TO
212 'where' => 'civicrm_membership.id',
213 'headerPattern' => '/^(m(embership\s)?id)$/i',
c3fc2621 214 'export' => TRUE,
522a26c9 215 'table_name' => 'civicrm_membership',
216 'entity' => 'Membership',
217 'bao' => 'CRM_Member_BAO_Membership',
6a7e5e5d 218 'localizable' => 0,
2cbbebe8
A
219 'html' => [
220 'type' => 'Number',
221 ],
1fe423d6 222 'readonly' => TRUE,
a9d0587b 223 'add' => '1.5',
c3fc2621
CW
224 ],
225 'membership_contact_id' => [
e501603b
TO
226 'name' => 'contact_id',
227 'type' => CRM_Utils_Type::T_INT,
c3fc2621 228 'title' => ts('Contact ID'),
215b423e 229 'description' => ts('FK to Contact ID'),
c3fc2621
CW
230 'required' => TRUE,
231 'import' => TRUE,
e501603b
TO
232 'where' => 'civicrm_membership.contact_id',
233 'headerPattern' => '/contact(.?id)?/i',
234 'dataPattern' => '/^\d+$/',
c3fc2621 235 'export' => TRUE,
522a26c9 236 'table_name' => 'civicrm_membership',
237 'entity' => 'Membership',
238 'bao' => 'CRM_Member_BAO_Membership',
6a7e5e5d 239 'localizable' => 0,
e501603b 240 'FKClassName' => 'CRM_Contact_DAO_Contact',
c3fc2621 241 'html' => [
e501603b 242 'type' => 'EntityRef',
2cbbebe8 243 'label' => ts("Contact"),
c3fc2621 244 ],
a9d0587b 245 'add' => '1.5',
c3fc2621
CW
246 ],
247 'membership_type_id' => [
e501603b
TO
248 'name' => 'membership_type_id',
249 'type' => CRM_Utils_Type::T_INT,
2cbbebe8 250 'title' => ts('Membership Type ID'),
215b423e 251 'description' => ts('FK to Membership Type'),
c3fc2621
CW
252 'required' => TRUE,
253 'import' => TRUE,
e501603b
TO
254 'where' => 'civicrm_membership.membership_type_id',
255 'headerPattern' => '/^(m(embership\s)?type)$/i',
c3fc2621 256 'export' => FALSE,
522a26c9 257 'table_name' => 'civicrm_membership',
258 'entity' => 'Membership',
259 'bao' => 'CRM_Member_BAO_Membership',
6a7e5e5d 260 'localizable' => 0,
e501603b 261 'FKClassName' => 'CRM_Member_DAO_MembershipType',
c3fc2621 262 'html' => [
e501603b 263 'type' => 'Select',
03ee227b 264 'label' => ts("Membership Type"),
c3fc2621
CW
265 ],
266 'pseudoconstant' => [
e501603b
TO
267 'table' => 'civicrm_membership_type',
268 'keyColumn' => 'id',
269 'labelColumn' => 'name',
e6ca0a57 270 ],
a9d0587b 271 'add' => '1.5',
c3fc2621 272 ],
09ba1975 273 'membership_join_date' => [
e501603b
TO
274 'name' => 'join_date',
275 'type' => CRM_Utils_Type::T_DATE,
c3fc2621 276 'title' => ts('Member Since'),
215b423e 277 'description' => ts('Beginning of initial membership period (member since...).'),
c3fc2621 278 'import' => TRUE,
e501603b
TO
279 'where' => 'civicrm_membership.join_date',
280 'headerPattern' => '/^join|(j(oin\s)?date)$/i',
281 'dataPattern' => '/\d{4}-?\d{2}-?\d{2}/',
c3fc2621 282 'export' => TRUE,
522a26c9 283 'table_name' => 'civicrm_membership',
284 'entity' => 'Membership',
285 'bao' => 'CRM_Member_BAO_Membership',
6a7e5e5d 286 'localizable' => 0,
c3fc2621 287 'html' => [
e501603b 288 'type' => 'Select Date',
24317d89 289 'formatType' => 'activityDate',
c3fc2621 290 ],
a9d0587b 291 'add' => '1.5',
c3fc2621
CW
292 ],
293 'membership_start_date' => [
e501603b
TO
294 'name' => 'start_date',
295 'type' => CRM_Utils_Type::T_DATE,
c3fc2621 296 'title' => ts('Membership Start Date'),
215b423e 297 'description' => ts('Beginning of current uninterrupted membership period.'),
c3fc2621 298 'import' => TRUE,
e501603b
TO
299 'where' => 'civicrm_membership.start_date',
300 'headerPattern' => '/(member(ship)?.)?start(s)?(.date$)?/i',
301 'dataPattern' => '/\d{4}-?\d{2}-?\d{2}/',
c3fc2621 302 'export' => TRUE,
522a26c9 303 'table_name' => 'civicrm_membership',
304 'entity' => 'Membership',
305 'bao' => 'CRM_Member_BAO_Membership',
6a7e5e5d 306 'localizable' => 0,
c3fc2621 307 'html' => [
e501603b 308 'type' => 'Select Date',
24317d89 309 'formatType' => 'activityDate',
c3fc2621 310 ],
a9d0587b 311 'add' => '1.5',
c3fc2621
CW
312 ],
313 'membership_end_date' => [
e501603b
TO
314 'name' => 'end_date',
315 'type' => CRM_Utils_Type::T_DATE,
c3fc2621 316 'title' => ts('Membership Expiration Date'),
215b423e 317 'description' => ts('Current membership period expire date.'),
c3fc2621 318 'import' => TRUE,
e501603b
TO
319 'where' => 'civicrm_membership.end_date',
320 'headerPattern' => '/(member(ship)?.)?end(s)?(.date$)?/i',
321 'dataPattern' => '/\d{4}-?\d{2}-?\d{2}/',
c3fc2621 322 'export' => TRUE,
522a26c9 323 'table_name' => 'civicrm_membership',
324 'entity' => 'Membership',
325 'bao' => 'CRM_Member_BAO_Membership',
6a7e5e5d 326 'localizable' => 0,
c3fc2621 327 'html' => [
e501603b 328 'type' => 'Select Date',
24317d89 329 'formatType' => 'activityDate',
c3fc2621 330 ],
a9d0587b 331 'add' => '1.5',
c3fc2621
CW
332 ],
333 'membership_source' => [
e501603b
TO
334 'name' => 'source',
335 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 336 'title' => ts('Source'),
e501603b
TO
337 'maxlength' => 128,
338 'size' => CRM_Utils_Type::HUGE,
c3fc2621 339 'import' => TRUE,
e501603b
TO
340 'where' => 'civicrm_membership.source',
341 'headerPattern' => '/^(member(ship?))?source$/i',
c3fc2621 342 'export' => TRUE,
522a26c9 343 'table_name' => 'civicrm_membership',
344 'entity' => 'Membership',
345 'bao' => 'CRM_Member_BAO_Membership',
6a7e5e5d 346 'localizable' => 0,
c3fc2621 347 'html' => [
e501603b 348 'type' => 'Text',
c3fc2621 349 ],
a9d0587b 350 'add' => '1.5',
c3fc2621
CW
351 ],
352 'status_id' => [
e501603b
TO
353 'name' => 'status_id',
354 'type' => CRM_Utils_Type::T_INT,
2cbbebe8 355 'title' => ts('Status ID'),
215b423e 356 'description' => ts('FK to Membership Status'),
c3fc2621
CW
357 'required' => TRUE,
358 'import' => TRUE,
e501603b
TO
359 'where' => 'civicrm_membership.status_id',
360 'headerPattern' => '/(member(ship|).)?(status)$/i',
c3fc2621 361 'export' => FALSE,
522a26c9 362 'table_name' => 'civicrm_membership',
363 'entity' => 'Membership',
364 'bao' => 'CRM_Member_BAO_Membership',
6a7e5e5d 365 'localizable' => 0,
e501603b 366 'FKClassName' => 'CRM_Member_DAO_MembershipStatus',
c3fc2621 367 'html' => [
e501603b 368 'type' => 'Select',
2cbbebe8 369 'label' => ts("Status"),
c3fc2621
CW
370 ],
371 'pseudoconstant' => [
e501603b
TO
372 'table' => 'civicrm_membership_status',
373 'keyColumn' => 'id',
374 'labelColumn' => 'label',
e6ca0a57 375 ],
a9d0587b 376 'add' => '1.5',
c3fc2621 377 ],
8f67d99a 378 'member_is_override' => [
e501603b
TO
379 'name' => 'is_override',
380 'type' => CRM_Utils_Type::T_BOOLEAN,
c3fc2621 381 'title' => ts('Status Override'),
215b423e 382 'description' => ts('Admin users may set a manual status which overrides the calculated status. When this flag is true, automated status update scripts should NOT modify status for the record.'),
c3fc2621 383 'import' => TRUE,
e501603b
TO
384 'where' => 'civicrm_membership.is_override',
385 'headerPattern' => '/override$/i',
c3fc2621 386 'export' => TRUE,
522a26c9 387 'table_name' => 'civicrm_membership',
388 'entity' => 'Membership',
389 'bao' => 'CRM_Member_BAO_Membership',
6a7e5e5d 390 'localizable' => 0,
c3fc2621 391 'html' => [
e501603b 392 'type' => 'CheckBox',
c3fc2621 393 ],
a9d0587b 394 'add' => '1.5',
c3fc2621 395 ],
e136f704
O
396 'status_override_end_date' => [
397 'name' => 'status_override_end_date',
398 'type' => CRM_Utils_Type::T_DATE,
399 'title' => ts('Status Override End Date'),
215b423e 400 'description' => ts('Then end date of membership status override if \'Override until selected date\' override type is selected.'),
e136f704
O
401 'import' => TRUE,
402 'where' => 'civicrm_membership.status_override_end_date',
e136f704
O
403 'export' => TRUE,
404 'default' => 'NULL',
405 'table_name' => 'civicrm_membership',
406 'entity' => 'Membership',
407 'bao' => 'CRM_Member_BAO_Membership',
408 'localizable' => 0,
409 'html' => [
410 'type' => 'Select Date',
efcda6b9 411 'formatType' => 'activityDate',
e136f704 412 ],
a9d0587b 413 'add' => '4.7',
e136f704 414 ],
c3fc2621 415 'owner_membership_id' => [
e501603b
TO
416 'name' => 'owner_membership_id',
417 'type' => CRM_Utils_Type::T_INT,
c3fc2621 418 'title' => ts('Primary Member ID'),
215b423e 419 'description' => ts('Optional FK to Parent Membership.'),
e501603b 420 'where' => 'civicrm_membership.owner_membership_id',
a36434b9 421 'export' => TRUE,
522a26c9 422 'table_name' => 'civicrm_membership',
423 'entity' => 'Membership',
424 'bao' => 'CRM_Member_BAO_Membership',
6a7e5e5d 425 'localizable' => 0,
e501603b 426 'FKClassName' => 'CRM_Member_DAO_Membership',
2cbbebe8
A
427 'html' => [
428 'label' => ts("Primary Member"),
429 ],
a9d0587b 430 'add' => '1.7',
c3fc2621
CW
431 ],
432 'max_related' => [
e501603b
TO
433 'name' => 'max_related',
434 'type' => CRM_Utils_Type::T_INT,
c3fc2621 435 'title' => ts('Max Related'),
215b423e 436 'description' => ts('Maximum number of related memberships (membership_type override).'),
a36434b9 437 'where' => 'civicrm_membership.max_related',
8f67d99a 438 'export' => TRUE,
522a26c9 439 'table_name' => 'civicrm_membership',
440 'entity' => 'Membership',
441 'bao' => 'CRM_Member_BAO_Membership',
6a7e5e5d 442 'localizable' => 0,
c3fc2621 443 'html' => [
e501603b 444 'type' => 'Text',
c23563e3 445 'label' => ts("Maximum number of related memberships"),
c3fc2621 446 ],
a9d0587b 447 'add' => '4.3',
c3fc2621
CW
448 ],
449 'member_is_test' => [
e501603b
TO
450 'name' => 'is_test',
451 'type' => CRM_Utils_Type::T_BOOLEAN,
c3fc2621
CW
452 'title' => ts('Test'),
453 'import' => TRUE,
e501603b
TO
454 'where' => 'civicrm_membership.is_test',
455 'headerPattern' => '/(is.)?test(.member(ship)?)?/i',
c3fc2621 456 'export' => TRUE,
45a83e42 457 'default' => '0',
522a26c9 458 'table_name' => 'civicrm_membership',
459 'entity' => 'Membership',
460 'bao' => 'CRM_Member_BAO_Membership',
6a7e5e5d 461 'localizable' => 0,
c3fc2621 462 'html' => [
e501603b 463 'type' => 'CheckBox',
c3fc2621 464 ],
a9d0587b 465 'add' => NULL,
c3fc2621
CW
466 ],
467 'member_is_pay_later' => [
e501603b
TO
468 'name' => 'is_pay_later',
469 'type' => CRM_Utils_Type::T_BOOLEAN,
c3fc2621
CW
470 'title' => ts('Is Pay Later'),
471 'import' => TRUE,
e501603b
TO
472 'where' => 'civicrm_membership.is_pay_later',
473 'headerPattern' => '/(is.)?(pay(.)?later)$/i',
c3fc2621 474 'export' => TRUE,
45a83e42 475 'default' => '0',
522a26c9 476 'table_name' => 'civicrm_membership',
477 'entity' => 'Membership',
478 'bao' => 'CRM_Member_BAO_Membership',
6a7e5e5d 479 'localizable' => 0,
c3fc2621 480 'html' => [
e501603b 481 'type' => 'CheckBox',
c3fc2621 482 ],
a9d0587b 483 'add' => '2.1',
c3fc2621 484 ],
8f67d99a 485 'membership_recur_id' => [
e501603b
TO
486 'name' => 'contribution_recur_id',
487 'type' => CRM_Utils_Type::T_INT,
2cbbebe8 488 'title' => ts('Recurring Contribution ID'),
215b423e 489 'description' => ts('Conditional foreign key to civicrm_contribution_recur id. Each membership in connection with a recurring contribution carries a foreign key to the recurring contribution record. This assumes we can track these processor initiated events.'),
a36434b9 490 'where' => 'civicrm_membership.contribution_recur_id',
8f67d99a 491 'export' => TRUE,
522a26c9 492 'table_name' => 'civicrm_membership',
493 'entity' => 'Membership',
494 'bao' => 'CRM_Member_BAO_Membership',
6a7e5e5d 495 'localizable' => 0,
e501603b 496 'FKClassName' => 'CRM_Contribute_DAO_ContributionRecur',
2cbbebe8
A
497 'html' => [
498 'label' => ts("Recurring Contribution"),
499 ],
a9d0587b 500 'add' => '3.3',
c3fc2621
CW
501 ],
502 'member_campaign_id' => [
e501603b
TO
503 'name' => 'campaign_id',
504 'type' => CRM_Utils_Type::T_INT,
2cbbebe8 505 'title' => ts('Campaign ID'),
215b423e 506 'description' => ts('The campaign for which this membership is attached.'),
c3fc2621 507 'import' => TRUE,
e501603b 508 'where' => 'civicrm_membership.campaign_id',
c3fc2621 509 'export' => TRUE,
522a26c9 510 'table_name' => 'civicrm_membership',
511 'entity' => 'Membership',
512 'bao' => 'CRM_Member_BAO_Membership',
6a7e5e5d 513 'localizable' => 0,
e501603b 514 'FKClassName' => 'CRM_Campaign_DAO_Campaign',
c3fc2621 515 'html' => [
e501603b 516 'type' => 'Select',
2cbbebe8 517 'label' => ts("Campaign"),
c3fc2621 518 ],
a9d0587b 519 'add' => '3.4',
c3fc2621
CW
520 ],
521 ];
346aaaba 522 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
e501603b 523 }
346aaaba 524 return Civi::$statics[__CLASS__]['fields'];
e501603b 525 }
c3fc2621 526
e501603b 527 /**
bd8e0b14 528 * Return a mapping from field-name to the corresponding key (as used in fields()).
e501603b
TO
529 *
530 * @return array
bd8e0b14 531 * Array(string $name => string $uniqueName).
e501603b 532 */
c3fc2621 533 public static function &fieldKeys() {
bd8e0b14
TO
534 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
535 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
e501603b 536 }
bd8e0b14 537 return Civi::$statics[__CLASS__]['fieldKeys'];
e501603b 538 }
c3fc2621 539
e501603b
TO
540 /**
541 * Returns the names of this table
542 *
543 * @return string
544 */
c3fc2621 545 public static function getTableName() {
e501603b
TO
546 return self::$_tableName;
547 }
c3fc2621 548
e501603b
TO
549 /**
550 * Returns if this table needs to be logged
551 *
c3fc2621 552 * @return bool
e501603b 553 */
c3fc2621 554 public function getLog() {
e501603b
TO
555 return self::$_log;
556 }
c3fc2621 557
e501603b
TO
558 /**
559 * Returns the list of fields that can be imported
560 *
561 * @param bool $prefix
562 *
563 * @return array
564 */
c3fc2621
CW
565 public static function &import($prefix = FALSE) {
566 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'membership', $prefix, []);
60808919 567 return $r;
e501603b 568 }
c3fc2621 569
e501603b
TO
570 /**
571 * Returns the list of fields that can be exported
572 *
573 * @param bool $prefix
574 *
575 * @return array
576 */
c3fc2621
CW
577 public static function &export($prefix = FALSE) {
578 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'membership', $prefix, []);
60808919 579 return $r;
e501603b 580 }
c3fc2621 581
e7a6b91a
AS
582 /**
583 * Returns the list of indices
c3fc2621
CW
584 *
585 * @param bool $localize
586 *
587 * @return array
e7a6b91a
AS
588 */
589 public static function indices($localize = TRUE) {
c3fc2621
CW
590 $indices = [
591 'index_owner_membership_id' => [
e7a6b91a 592 'name' => 'index_owner_membership_id',
c3fc2621 593 'field' => [
e7a6b91a 594 0 => 'owner_membership_id',
c3fc2621
CW
595 ],
596 'localizable' => FALSE,
e7a6b91a 597 'sig' => 'civicrm_membership::0::owner_membership_id',
c3fc2621
CW
598 ],
599 ];
e7a6b91a
AS
600 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
601 }
c3fc2621 602
e501603b 603}