Merge pull request #12964 from civicrm/5.7
[civicrm-core.git] / CRM / Contribute / DAO / ContributionRecur.php
1 <?php
2
3 /**
4 * @package CRM
5 * @copyright CiviCRM LLC (c) 2004-2018
6 *
7 * Generated from xml/schema/CRM/Contribute/ContributionRecur.xml
8 * DO NOT EDIT. Generated by CRM_Core_CodeGen
9 * (GenCodeChecksum:86dee7eccc17a37ef08043f32396b80d)
10 */
11
12 /**
13 * Database access object for the ContributionRecur entity.
14 */
15 class CRM_Contribute_DAO_ContributionRecur extends CRM_Core_DAO {
16
17 /**
18 * Static instance to hold the table name.
19 *
20 * @var string
21 */
22 static $_tableName = 'civicrm_contribution_recur';
23
24 /**
25 * Should CiviCRM log any modifications to this table in the civicrm_log table.
26 *
27 * @var bool
28 */
29 static $_log = TRUE;
30
31 /**
32 * Contribution Recur ID
33 *
34 * @var int unsigned
35 */
36 public $id;
37
38 /**
39 * Foreign key to civicrm_contact.id .
40 *
41 * @var int unsigned
42 */
43 public $contact_id;
44
45 /**
46 * Amount to be contributed or charged each recurrence.
47 *
48 * @var float
49 */
50 public $amount;
51
52 /**
53 * 3 character string, value from config setting or input via user.
54 *
55 * @var string
56 */
57 public $currency;
58
59 /**
60 * Time units for recurrence of payment.
61 *
62 * @var string
63 */
64 public $frequency_unit;
65
66 /**
67 * Number of time units for recurrence of payment.
68 *
69 * @var int unsigned
70 */
71 public $frequency_interval;
72
73 /**
74 * Total number of payments to be made. Set this to 0 if this is an open-ended commitment i.e. no set end date.
75 *
76 * @var int unsigned
77 */
78 public $installments;
79
80 /**
81 * The date the first scheduled recurring contribution occurs.
82 *
83 * @var datetime
84 */
85 public $start_date;
86
87 /**
88 * When this recurring contribution record was created.
89 *
90 * @var datetime
91 */
92 public $create_date;
93
94 /**
95 * Last updated date for this record. mostly the last time a payment was received
96 *
97 * @var datetime
98 */
99 public $modified_date;
100
101 /**
102 * Date this recurring contribution was cancelled by contributor- if we can get access to it
103 *
104 * @var datetime
105 */
106 public $cancel_date;
107
108 /**
109 * Date this recurring contribution finished successfully
110 *
111 * @var datetime
112 */
113 public $end_date;
114
115 /**
116 * Possibly needed to store a unique identifier for this recurring payment order - if this is available from the processor??
117 *
118 * @var string
119 */
120 public $processor_id;
121
122 /**
123 * Optionally used to store a link to a payment token used for this recurring contribution.
124 *
125 * @var int unsigned
126 */
127 public $payment_token_id;
128
129 /**
130 * unique transaction id. may be processor id, bank id + trans id, or account number + check number... depending on payment_method
131 *
132 * @var string
133 */
134 public $trxn_id;
135
136 /**
137 * unique invoice id, system generated or passed in
138 *
139 * @var string
140 */
141 public $invoice_id;
142
143 /**
144 * @var int unsigned
145 */
146 public $contribution_status_id;
147
148 /**
149 * @var boolean
150 */
151 public $is_test;
152
153 /**
154 * Day in the period when the payment should be charged e.g. 1st of month, 15th etc.
155 *
156 * @var int unsigned
157 */
158 public $cycle_day;
159
160 /**
161 * Next scheduled date
162 *
163 * @var datetime
164 */
165 public $next_sched_contribution_date;
166
167 /**
168 * Number of failed charge attempts since last success. Business rule could be set to deactivate on more than x failures.
169 *
170 * @var int unsigned
171 */
172 public $failure_count;
173
174 /**
175 * Date to retry failed attempt
176 *
177 * @var datetime
178 */
179 public $failure_retry_date;
180
181 /**
182 * Some systems allow contributor to set a number of installments - but then auto-renew the subscription or commitment if they do not cancel.
183 *
184 * @var boolean
185 */
186 public $auto_renew;
187
188 /**
189 * Foreign key to civicrm_payment_processor.id
190 *
191 * @var int unsigned
192 */
193 public $payment_processor_id;
194
195 /**
196 * FK to Financial Type
197 *
198 * @var int unsigned
199 */
200 public $financial_type_id;
201
202 /**
203 * FK to Payment Instrument
204 *
205 * @var int unsigned
206 */
207 public $payment_instrument_id;
208
209 /**
210 * The campaign for which this contribution has been triggered.
211 *
212 * @var int unsigned
213 */
214 public $campaign_id;
215
216 /**
217 * if true, receipt is automatically emailed to contact on each successful payment
218 *
219 * @var boolean
220 */
221 public $is_email_receipt;
222
223 /**
224 * Class constructor.
225 */
226 public function __construct() {
227 $this->__table = 'civicrm_contribution_recur';
228 parent::__construct();
229 }
230
231 /**
232 * Returns foreign keys and entity references.
233 *
234 * @return array
235 * [CRM_Core_Reference_Interface]
236 */
237 public static function getReferenceColumns() {
238 if (!isset(Civi::$statics[__CLASS__]['links'])) {
239 Civi::$statics[__CLASS__]['links'] = static ::createReferenceColumns(__CLASS__);
240 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'contact_id', 'civicrm_contact', 'id');
241 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'payment_token_id', 'civicrm_payment_token', 'id');
242 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'payment_processor_id', 'civicrm_payment_processor', 'id');
243 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'financial_type_id', 'civicrm_financial_type', 'id');
244 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'campaign_id', 'civicrm_campaign', 'id');
245 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
246 }
247 return Civi::$statics[__CLASS__]['links'];
248 }
249
250 /**
251 * Returns all the column names of this table
252 *
253 * @return array
254 */
255 public static function &fields() {
256 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
257 Civi::$statics[__CLASS__]['fields'] = [
258 'id' => [
259 'name' => 'id',
260 'type' => CRM_Utils_Type::T_INT,
261 'title' => ts('Recurring Contribution ID'),
262 'description' => 'Contribution Recur ID',
263 'required' => TRUE,
264 'table_name' => 'civicrm_contribution_recur',
265 'entity' => 'ContributionRecur',
266 'bao' => 'CRM_Contribute_BAO_ContributionRecur',
267 'localizable' => 0,
268 ],
269 'contact_id' => [
270 'name' => 'contact_id',
271 'type' => CRM_Utils_Type::T_INT,
272 'title' => ts('Contact ID'),
273 'description' => 'Foreign key to civicrm_contact.id .',
274 'required' => TRUE,
275 'table_name' => 'civicrm_contribution_recur',
276 'entity' => 'ContributionRecur',
277 'bao' => 'CRM_Contribute_BAO_ContributionRecur',
278 'localizable' => 0,
279 'FKClassName' => 'CRM_Contact_DAO_Contact',
280 ],
281 'amount' => [
282 'name' => 'amount',
283 'type' => CRM_Utils_Type::T_MONEY,
284 'title' => ts('Amount'),
285 'description' => 'Amount to be contributed or charged each recurrence.',
286 'required' => TRUE,
287 'precision' => [
288 20,
289 2
290 ],
291 'table_name' => 'civicrm_contribution_recur',
292 'entity' => 'ContributionRecur',
293 'bao' => 'CRM_Contribute_BAO_ContributionRecur',
294 'localizable' => 0,
295 'html' => [
296 'type' => 'Text',
297 ],
298 ],
299 'currency' => [
300 'name' => 'currency',
301 'type' => CRM_Utils_Type::T_STRING,
302 'title' => ts('Currency'),
303 'description' => '3 character string, value from config setting or input via user.',
304 'maxlength' => 3,
305 'size' => CRM_Utils_Type::FOUR,
306 'default' => 'NULL',
307 'table_name' => 'civicrm_contribution_recur',
308 'entity' => 'ContributionRecur',
309 'bao' => 'CRM_Contribute_BAO_ContributionRecur',
310 'localizable' => 0,
311 'html' => [
312 'type' => 'Select',
313 ],
314 'pseudoconstant' => [
315 'table' => 'civicrm_currency',
316 'keyColumn' => 'name',
317 'labelColumn' => 'full_name',
318 'nameColumn' => 'name',
319 ]
320 ],
321 'frequency_unit' => [
322 'name' => 'frequency_unit',
323 'type' => CRM_Utils_Type::T_STRING,
324 'title' => ts('Frequency Unit'),
325 'description' => 'Time units for recurrence of payment.',
326 'maxlength' => 8,
327 'size' => CRM_Utils_Type::EIGHT,
328 'default' => 'month',
329 'table_name' => 'civicrm_contribution_recur',
330 'entity' => 'ContributionRecur',
331 'bao' => 'CRM_Contribute_BAO_ContributionRecur',
332 'localizable' => 0,
333 'html' => [
334 'type' => 'Select',
335 ],
336 'pseudoconstant' => [
337 'optionGroupName' => 'recur_frequency_units',
338 'keyColumn' => 'name',
339 'optionEditPath' => 'civicrm/admin/options/recur_frequency_units',
340 ]
341 ],
342 'frequency_interval' => [
343 'name' => 'frequency_interval',
344 'type' => CRM_Utils_Type::T_INT,
345 'title' => ts('Interval (number of units)'),
346 'description' => 'Number of time units for recurrence of payment.',
347 'required' => TRUE,
348 'table_name' => 'civicrm_contribution_recur',
349 'entity' => 'ContributionRecur',
350 'bao' => 'CRM_Contribute_BAO_ContributionRecur',
351 'localizable' => 0,
352 'html' => [
353 'type' => 'Text',
354 ],
355 ],
356 'installments' => [
357 'name' => 'installments',
358 'type' => CRM_Utils_Type::T_INT,
359 'title' => ts('Number of Installments'),
360 'description' => 'Total number of payments to be made. Set this to 0 if this is an open-ended commitment i.e. no set end date.',
361 'table_name' => 'civicrm_contribution_recur',
362 'entity' => 'ContributionRecur',
363 'bao' => 'CRM_Contribute_BAO_ContributionRecur',
364 'localizable' => 0,
365 'html' => [
366 'type' => 'Text',
367 ],
368 ],
369 'start_date' => [
370 'name' => 'start_date',
371 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
372 'title' => ts('Recurring Contribution Started Date'),
373 'description' => 'The date the first scheduled recurring contribution occurs.',
374 'required' => TRUE,
375 'table_name' => 'civicrm_contribution_recur',
376 'entity' => 'ContributionRecur',
377 'bao' => 'CRM_Contribute_BAO_ContributionRecur',
378 'localizable' => 0,
379 'html' => [
380 'type' => 'Select Date',
381 'formatType' => 'activityDate',
382 ],
383 ],
384 'create_date' => [
385 'name' => 'create_date',
386 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
387 'title' => ts('Recurring Contribution Created Date'),
388 'description' => 'When this recurring contribution record was created.',
389 'required' => TRUE,
390 'table_name' => 'civicrm_contribution_recur',
391 'entity' => 'ContributionRecur',
392 'bao' => 'CRM_Contribute_BAO_ContributionRecur',
393 'localizable' => 0,
394 'html' => [
395 'type' => 'Select Date',
396 'formatType' => 'activityDate',
397 ],
398 ],
399 'modified_date' => [
400 'name' => 'modified_date',
401 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
402 'title' => ts('Recurring Contribution Modified Date'),
403 'description' => 'Last updated date for this record. mostly the last time a payment was received',
404 'table_name' => 'civicrm_contribution_recur',
405 'entity' => 'ContributionRecur',
406 'bao' => 'CRM_Contribute_BAO_ContributionRecur',
407 'localizable' => 0,
408 'html' => [
409 'type' => 'Select Date',
410 'formatType' => 'activityDate',
411 ],
412 ],
413 'cancel_date' => [
414 'name' => 'cancel_date',
415 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
416 'title' => ts('Recurring Contribution Cancel Date'),
417 'description' => 'Date this recurring contribution was cancelled by contributor- if we can get access to it',
418 'table_name' => 'civicrm_contribution_recur',
419 'entity' => 'ContributionRecur',
420 'bao' => 'CRM_Contribute_BAO_ContributionRecur',
421 'localizable' => 0,
422 'html' => [
423 'type' => 'Select Date',
424 'formatType' => 'activityDate',
425 ],
426 ],
427 'end_date' => [
428 'name' => 'end_date',
429 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
430 'title' => ts('Recurring Contribution End Date'),
431 'description' => 'Date this recurring contribution finished successfully',
432 'table_name' => 'civicrm_contribution_recur',
433 'entity' => 'ContributionRecur',
434 'bao' => 'CRM_Contribute_BAO_ContributionRecur',
435 'localizable' => 0,
436 'html' => [
437 'type' => 'Select Date',
438 'formatType' => 'activityDate',
439 ],
440 ],
441 'processor_id' => [
442 'name' => 'processor_id',
443 'type' => CRM_Utils_Type::T_STRING,
444 'title' => ts('Processor ID'),
445 'description' => 'Possibly needed to store a unique identifier for this recurring payment order - if this is available from the processor??',
446 'maxlength' => 255,
447 'size' => CRM_Utils_Type::HUGE,
448 'table_name' => 'civicrm_contribution_recur',
449 'entity' => 'ContributionRecur',
450 'bao' => 'CRM_Contribute_BAO_ContributionRecur',
451 'localizable' => 0,
452 ],
453 'payment_token_id' => [
454 'name' => 'payment_token_id',
455 'type' => CRM_Utils_Type::T_INT,
456 'title' => ts('Payment Token ID'),
457 'description' => 'Optionally used to store a link to a payment token used for this recurring contribution.',
458 'table_name' => 'civicrm_contribution_recur',
459 'entity' => 'ContributionRecur',
460 'bao' => 'CRM_Contribute_BAO_ContributionRecur',
461 'localizable' => 0,
462 'FKClassName' => 'CRM_Financial_DAO_PaymentToken',
463 ],
464 'trxn_id' => [
465 'name' => 'trxn_id',
466 'type' => CRM_Utils_Type::T_STRING,
467 'title' => ts('Transaction ID'),
468 'description' => 'unique transaction id. may be processor id, bank id + trans id, or account number + check number... depending on payment_method',
469 'maxlength' => 255,
470 'size' => CRM_Utils_Type::HUGE,
471 'table_name' => 'civicrm_contribution_recur',
472 'entity' => 'ContributionRecur',
473 'bao' => 'CRM_Contribute_BAO_ContributionRecur',
474 'localizable' => 0,
475 ],
476 'invoice_id' => [
477 'name' => 'invoice_id',
478 'type' => CRM_Utils_Type::T_STRING,
479 'title' => ts('Invoice ID'),
480 'description' => 'unique invoice id, system generated or passed in',
481 'maxlength' => 255,
482 'size' => CRM_Utils_Type::HUGE,
483 'table_name' => 'civicrm_contribution_recur',
484 'entity' => 'ContributionRecur',
485 'bao' => 'CRM_Contribute_BAO_ContributionRecur',
486 'localizable' => 0,
487 ],
488 'contribution_status_id' => [
489 'name' => 'contribution_status_id',
490 'type' => CRM_Utils_Type::T_INT,
491 'title' => ts('Recurring Contribution Status'),
492 'import' => TRUE,
493 'where' => 'civicrm_contribution_recur.contribution_status_id',
494 'headerPattern' => '',
495 'dataPattern' => '',
496 'export' => TRUE,
497 'default' => '1',
498 'table_name' => 'civicrm_contribution_recur',
499 'entity' => 'ContributionRecur',
500 'bao' => 'CRM_Contribute_BAO_ContributionRecur',
501 'localizable' => 0,
502 'pseudoconstant' => [
503 'optionGroupName' => 'contribution_status',
504 'optionEditPath' => 'civicrm/admin/options/contribution_status',
505 ]
506 ],
507 'is_test' => [
508 'name' => 'is_test',
509 'type' => CRM_Utils_Type::T_BOOLEAN,
510 'title' => ts('Test'),
511 'import' => TRUE,
512 'where' => 'civicrm_contribution_recur.is_test',
513 'headerPattern' => '',
514 'dataPattern' => '',
515 'export' => TRUE,
516 'default' => '0',
517 'table_name' => 'civicrm_contribution_recur',
518 'entity' => 'ContributionRecur',
519 'bao' => 'CRM_Contribute_BAO_ContributionRecur',
520 'localizable' => 0,
521 'html' => [
522 'type' => 'CheckBox',
523 ],
524 ],
525 'cycle_day' => [
526 'name' => 'cycle_day',
527 'type' => CRM_Utils_Type::T_INT,
528 'title' => ts('Number of Cycle Day'),
529 'description' => 'Day in the period when the payment should be charged e.g. 1st of month, 15th etc.',
530 'required' => TRUE,
531 'default' => '1',
532 'table_name' => 'civicrm_contribution_recur',
533 'entity' => 'ContributionRecur',
534 'bao' => 'CRM_Contribute_BAO_ContributionRecur',
535 'localizable' => 0,
536 'html' => [
537 'type' => 'Text',
538 ],
539 ],
540 'next_sched_contribution_date' => [
541 'name' => 'next_sched_contribution_date',
542 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
543 'title' => ts('Next Scheduled Contribution Date'),
544 'description' => 'Next scheduled date',
545 'table_name' => 'civicrm_contribution_recur',
546 'entity' => 'ContributionRecur',
547 'bao' => 'CRM_Contribute_BAO_ContributionRecur',
548 'localizable' => 0,
549 'html' => [
550 'type' => 'Select Date',
551 'formatType' => 'activityDate',
552 ],
553 ],
554 'failure_count' => [
555 'name' => 'failure_count',
556 'type' => CRM_Utils_Type::T_INT,
557 'title' => ts('Number of Failures'),
558 'description' => 'Number of failed charge attempts since last success. Business rule could be set to deactivate on more than x failures.',
559 'default' => '0',
560 'table_name' => 'civicrm_contribution_recur',
561 'entity' => 'ContributionRecur',
562 'bao' => 'CRM_Contribute_BAO_ContributionRecur',
563 'localizable' => 0,
564 'html' => [
565 'type' => 'Text',
566 ],
567 ],
568 'failure_retry_date' => [
569 'name' => 'failure_retry_date',
570 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
571 'title' => ts('Retry Failed Attempt Date'),
572 'description' => 'Date to retry failed attempt',
573 'table_name' => 'civicrm_contribution_recur',
574 'entity' => 'ContributionRecur',
575 'bao' => 'CRM_Contribute_BAO_ContributionRecur',
576 'localizable' => 0,
577 'html' => [
578 'type' => 'Select Date',
579 'formatType' => 'activityDate',
580 ],
581 ],
582 'auto_renew' => [
583 'name' => 'auto_renew',
584 'type' => CRM_Utils_Type::T_BOOLEAN,
585 'title' => ts('Auto Renew'),
586 'description' => 'Some systems allow contributor to set a number of installments - but then auto-renew the subscription or commitment if they do not cancel.',
587 'required' => TRUE,
588 'default' => '0',
589 'table_name' => 'civicrm_contribution_recur',
590 'entity' => 'ContributionRecur',
591 'bao' => 'CRM_Contribute_BAO_ContributionRecur',
592 'localizable' => 0,
593 'html' => [
594 'type' => 'CheckBox',
595 ],
596 ],
597 'payment_processor_id' => [
598 'name' => 'payment_processor_id',
599 'type' => CRM_Utils_Type::T_INT,
600 'title' => ts('Payment Processor'),
601 'description' => 'Foreign key to civicrm_payment_processor.id',
602 'table_name' => 'civicrm_contribution_recur',
603 'entity' => 'ContributionRecur',
604 'bao' => 'CRM_Contribute_BAO_ContributionRecur',
605 'localizable' => 0,
606 'FKClassName' => 'CRM_Financial_DAO_PaymentProcessor',
607 ],
608 'financial_type_id' => [
609 'name' => 'financial_type_id',
610 'type' => CRM_Utils_Type::T_INT,
611 'title' => ts('Financial Type'),
612 'description' => 'FK to Financial Type',
613 'export' => FALSE,
614 'where' => 'civicrm_contribution_recur.financial_type_id',
615 'headerPattern' => '',
616 'dataPattern' => '',
617 'table_name' => 'civicrm_contribution_recur',
618 'entity' => 'ContributionRecur',
619 'bao' => 'CRM_Contribute_BAO_ContributionRecur',
620 'localizable' => 0,
621 'FKClassName' => 'CRM_Financial_DAO_FinancialType',
622 'pseudoconstant' => [
623 'table' => 'civicrm_financial_type',
624 'keyColumn' => 'id',
625 'labelColumn' => 'name',
626 ]
627 ],
628 'payment_instrument_id' => [
629 'name' => 'payment_instrument_id',
630 'type' => CRM_Utils_Type::T_INT,
631 'title' => ts('Payment Method'),
632 'description' => 'FK to Payment Instrument',
633 'table_name' => 'civicrm_contribution_recur',
634 'entity' => 'ContributionRecur',
635 'bao' => 'CRM_Contribute_BAO_ContributionRecur',
636 'localizable' => 0,
637 'html' => [
638 'type' => 'Select',
639 ],
640 'pseudoconstant' => [
641 'optionGroupName' => 'payment_instrument',
642 'optionEditPath' => 'civicrm/admin/options/payment_instrument',
643 ]
644 ],
645 'contribution_campaign_id' => [
646 'name' => 'campaign_id',
647 'type' => CRM_Utils_Type::T_INT,
648 'title' => ts('Campaign'),
649 'description' => 'The campaign for which this contribution has been triggered.',
650 'import' => TRUE,
651 'where' => 'civicrm_contribution_recur.campaign_id',
652 'headerPattern' => '',
653 'dataPattern' => '',
654 'export' => TRUE,
655 'table_name' => 'civicrm_contribution_recur',
656 'entity' => 'ContributionRecur',
657 'bao' => 'CRM_Contribute_BAO_ContributionRecur',
658 'localizable' => 0,
659 'FKClassName' => 'CRM_Campaign_DAO_Campaign',
660 'pseudoconstant' => [
661 'table' => 'civicrm_campaign',
662 'keyColumn' => 'id',
663 'labelColumn' => 'title',
664 ]
665 ],
666 'is_email_receipt' => [
667 'name' => 'is_email_receipt',
668 'type' => CRM_Utils_Type::T_BOOLEAN,
669 'title' => ts('Send email Receipt?'),
670 'description' => 'if true, receipt is automatically emailed to contact on each successful payment',
671 'default' => '1',
672 'table_name' => 'civicrm_contribution_recur',
673 'entity' => 'ContributionRecur',
674 'bao' => 'CRM_Contribute_BAO_ContributionRecur',
675 'localizable' => 0,
676 'html' => [
677 'type' => 'CheckBox',
678 ],
679 ],
680 ];
681 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
682 }
683 return Civi::$statics[__CLASS__]['fields'];
684 }
685
686 /**
687 * Return a mapping from field-name to the corresponding key (as used in fields()).
688 *
689 * @return array
690 * Array(string $name => string $uniqueName).
691 */
692 public static function &fieldKeys() {
693 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
694 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
695 }
696 return Civi::$statics[__CLASS__]['fieldKeys'];
697 }
698
699 /**
700 * Returns the names of this table
701 *
702 * @return string
703 */
704 public static function getTableName() {
705 return self::$_tableName;
706 }
707
708 /**
709 * Returns if this table needs to be logged
710 *
711 * @return bool
712 */
713 public function getLog() {
714 return self::$_log;
715 }
716
717 /**
718 * Returns the list of fields that can be imported
719 *
720 * @param bool $prefix
721 *
722 * @return array
723 */
724 public static function &import($prefix = FALSE) {
725 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'contribution_recur', $prefix, []);
726 return $r;
727 }
728
729 /**
730 * Returns the list of fields that can be exported
731 *
732 * @param bool $prefix
733 *
734 * @return array
735 */
736 public static function &export($prefix = FALSE) {
737 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'contribution_recur', $prefix, []);
738 return $r;
739 }
740
741 /**
742 * Returns the list of indices
743 *
744 * @param bool $localize
745 *
746 * @return array
747 */
748 public static function indices($localize = TRUE) {
749 $indices = [
750 'UI_contrib_trxn_id' => [
751 'name' => 'UI_contrib_trxn_id',
752 'field' => [
753 0 => 'trxn_id',
754 ],
755 'localizable' => FALSE,
756 'unique' => TRUE,
757 'sig' => 'civicrm_contribution_recur::1::trxn_id',
758 ],
759 'UI_contrib_invoice_id' => [
760 'name' => 'UI_contrib_invoice_id',
761 'field' => [
762 0 => 'invoice_id',
763 ],
764 'localizable' => FALSE,
765 'unique' => TRUE,
766 'sig' => 'civicrm_contribution_recur::1::invoice_id',
767 ],
768 'index_contribution_status' => [
769 'name' => 'index_contribution_status',
770 'field' => [
771 0 => 'contribution_status_id',
772 ],
773 'localizable' => FALSE,
774 'sig' => 'civicrm_contribution_recur::0::contribution_status_id',
775 ],
776 'UI_contribution_recur_payment_instrument_id' => [
777 'name' => 'UI_contribution_recur_payment_instrument_id',
778 'field' => [
779 0 => 'payment_instrument_id',
780 ],
781 'localizable' => FALSE,
782 'sig' => 'civicrm_contribution_recur::0::payment_instrument_id',
783 ],
784 ];
785 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
786 }
787
788 }