Merge pull request #21562 from jitendrapurohit/notify-user
[civicrm-core.git] / CRM / Core / SelectValues.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
9 +--------------------------------------------------------------------+
10 */
11
12 use Civi\Token\TokenProcessor;
13
14 /**
15 * One place to store frequently used values in Select Elements. Note that
16 * some of the below elements will be dynamic, so we'll probably have a
17 * smart caching scheme on a per domain basis
18 *
19 * @package CRM
20 * @copyright CiviCRM LLC https://civicrm.org/licensing
21 */
22 class CRM_Core_SelectValues {
23
24 /**
25 * Yes/No options
26 *
27 * @return array
28 */
29 public static function boolean() {
30 return [
31 1 => ts('Yes'),
32 0 => ts('No'),
33 ];
34 }
35
36 /**
37 * Preferred mail format.
38 *
39 * @return array
40 */
41 public static function pmf() {
42 return [
43 'Both' => ts('Both'),
44 'HTML' => ts('HTML'),
45 'Text' => ts('Text'),
46 ];
47 }
48
49 /**
50 * Privacy options.
51 *
52 * @return array
53 */
54 public static function privacy() {
55 return [
56 'do_not_phone' => ts('Do not phone'),
57 'do_not_email' => ts('Do not email'),
58 'do_not_mail' => ts('Do not mail'),
59 'do_not_sms' => ts('Do not sms'),
60 'do_not_trade' => ts('Do not trade'),
61 'is_opt_out' => ts('No bulk emails (User Opt Out)'),
62 ];
63 }
64
65 /**
66 * Various pre defined contact super types.
67 *
68 * @return array
69 */
70 public static function contactType() {
71 return CRM_Contact_BAO_ContactType::basicTypePairs();
72 }
73
74 /**
75 * Various pre defined unit list.
76 *
77 * @param string $unitType
78 * @return array
79 */
80 public static function unitList($unitType = NULL) {
81 $unitList = [
82 'day' => ts('day'),
83 'month' => ts('month'),
84 'year' => ts('year'),
85 ];
86 if ($unitType === 'duration') {
87 $unitList['lifetime'] = ts('lifetime');
88 }
89 return $unitList;
90 }
91
92 /**
93 * Membership type unit.
94 *
95 * @return array
96 */
97 public static function membershipTypeUnitList() {
98 return self::unitList('duration');
99 }
100
101 /**
102 * Various pre defined period types.
103 *
104 * @return array
105 */
106 public static function periodType() {
107 return [
108 'rolling' => ts('Rolling'),
109 'fixed' => ts('Fixed'),
110 ];
111 }
112
113 /**
114 * Various pre defined email selection methods.
115 *
116 * @return array
117 */
118 public static function emailSelectMethods() {
119 return [
120 'automatic' => ts('Automatic'),
121 'location-only' => ts('Only send to email addresses assigned to the specified location'),
122 'location-prefer' => ts('Prefer email addresses assigned to the specified location'),
123 'location-exclude' => ts('Exclude email addresses assigned to the specified location'),
124 ];
125 }
126
127 /**
128 * Various pre defined member visibility options.
129 *
130 * @return array
131 */
132 public static function memberVisibility() {
133 return [
134 'Public' => ts('Public'),
135 'Admin' => ts('Admin'),
136 ];
137 }
138
139 /**
140 * Member auto-renew options
141 *
142 * @return array
143 */
144 public static function memberAutoRenew() {
145 return [
146 ts('No auto-renew option'),
147 ts('Give option, but not required'),
148 ts('Auto-renew required'),
149 ];
150 }
151
152 /**
153 * Various pre defined event dates.
154 *
155 * @return array
156 */
157 public static function eventDate() {
158 return [
159 'start_date' => ts('start date'),
160 'end_date' => ts('end date'),
161 'join_date' => ts('member since'),
162 ];
163 }
164
165 /**
166 * Custom form field types.
167 *
168 * @return array
169 */
170 public static function customHtmlType() {
171 return [
172 'Text' => ts('Single-line input field (text or numeric)'),
173 'TextArea' => ts('Multi-line text box (textarea)'),
174 'Select' => ts('Drop-down (select list)'),
175 'Radio' => ts('Radio buttons'),
176 'CheckBox' => ts('Checkbox(es)'),
177 'Select Date' => ts('Select Date'),
178 'File' => ts('File'),
179 'RichTextEditor' => ts('Rich Text Editor'),
180 'Autocomplete-Select' => ts('Autocomplete-Select'),
181 'Link' => ts('Link'),
182 ];
183 }
184
185 /**
186 * Various pre defined extensions for dynamic properties and groups.
187 *
188 * @return array
189 *
190 */
191 public static function customGroupExtends() {
192 $customGroupExtends = [
193 'Activity' => ts('Activities'),
194 'Relationship' => ts('Relationships'),
195 'Contribution' => ts('Contributions'),
196 'ContributionRecur' => ts('Recurring Contributions'),
197 'Group' => ts('Groups'),
198 'Membership' => ts('Memberships'),
199 'Event' => ts('Events'),
200 'Participant' => ts('Participants'),
201 'ParticipantRole' => ts('Participants (Role)'),
202 'ParticipantEventName' => ts('Participants (Event Name)'),
203 'ParticipantEventType' => ts('Participants (Event Type)'),
204 'Pledge' => ts('Pledges'),
205 'Grant' => ts('Grants'),
206 'Address' => ts('Addresses'),
207 'Campaign' => ts('Campaigns'),
208 ];
209 $contactTypes = ['Contact' => ts('Contacts')] + self::contactType();
210 $extendObjs = CRM_Core_OptionGroup::values('cg_extend_objects');
211 $customGroupExtends = array_merge($contactTypes, $customGroupExtends, $extendObjs);
212 return $customGroupExtends;
213 }
214
215 /**
216 * Styles for displaying the custom data group.
217 *
218 * @return array
219 */
220 public static function customGroupStyle() {
221 return [
222 'Tab' => ts('Tab'),
223 'Inline' => ts('Inline'),
224 'Tab with table' => ts('Tab with table'),
225 ];
226 }
227
228 /**
229 * For displaying the uf group types.
230 *
231 * @return array
232 */
233 public static function ufGroupTypes() {
234 $ufGroupType = [
235 'Profile' => ts('Standalone Form or Directory'),
236 'Search Profile' => ts('Search Views'),
237 ];
238
239 if (CRM_Core_Config::singleton()->userSystem->supports_form_extensions) {
240 $ufGroupType += [
241 'User Registration' => ts('Drupal User Registration'),
242 'User Account' => ts('View/Edit Drupal User Account'),
243 ];
244 }
245 return $ufGroupType;
246 }
247
248 /**
249 * The status of a contact within a group.
250 *
251 * @return array
252 */
253 public static function groupContactStatus() {
254 return [
255 'Added' => ts('Added'),
256 'Removed' => ts('Removed'),
257 'Pending' => ts('Pending'),
258 ];
259 }
260
261 /**
262 * List of Group Types.
263 *
264 * @return array
265 */
266 public static function groupType() {
267 return [
268 'query' => ts('Dynamic'),
269 'static' => ts('Static'),
270 ];
271 }
272
273 /**
274 * Compose the parameters for a date select object.
275 *
276 * @param string|null $type
277 * the type of date
278 * @param string|null $format
279 * date format (QF format)
280 * @param null $minOffset
281 * @param null $maxOffset
282 * @param string $context
283 *
284 * @return array
285 * the date array
286 * @throws CRM_Core_Exception
287 */
288 public static function date($type = NULL, $format = NULL, $minOffset = NULL, $maxOffset = NULL, $context = 'display') {
289 // These options are deprecated. Definitely not used in datepicker. Possibly not even in jcalendar+addDateTime.
290 $date = [
291 'addEmptyOption' => TRUE,
292 'emptyOptionText' => ts('- select -'),
293 'emptyOptionValue' => '',
294 ];
295
296 if ($format) {
297 $date['format'] = $format;
298 }
299 else {
300 if ($type) {
301 $dao = new CRM_Core_DAO_PreferencesDate();
302 $dao->name = $type;
303 if (!$dao->find(TRUE)) {
304 throw new CRM_Core_Exception('Date preferences not configured.');
305 }
306 if (!$maxOffset) {
307 $maxOffset = $dao->end;
308 }
309 if (!$minOffset) {
310 $minOffset = $dao->start;
311 }
312
313 $date['format'] = $dao->date_format;
314 $date['time'] = (bool) $dao->time_format;
315 }
316
317 if (empty($date['format'])) {
318 if ($context === 'Input') {
319 $date['format'] = Civi::settings()->get('dateInputFormat');
320 }
321 else {
322 $date['format'] = 'M d';
323 }
324 }
325 }
326
327 $date['smarty_view_format'] = CRM_Utils_Date::getDateFieldViewFormat($date['format']);
328 if (!isset($date['time'])) {
329 $date['time'] = FALSE;
330 }
331
332 $year = date('Y');
333 $date['minYear'] = $year - (int) $minOffset;
334 $date['maxYear'] = $year + (int) $maxOffset;
335 return $date;
336 }
337
338 /**
339 * Values for UF form visibility options.
340 *
341 * @return array
342 */
343 public static function ufVisibility() {
344 return [
345 'User and User Admin Only' => ts('User and User Admin Only'),
346 'Public Pages' => ts('Expose Publicly'),
347 'Public Pages and Listings' => ts('Expose Publicly and for Listings'),
348 ];
349 }
350
351 /**
352 * Values for group form visibility options.
353 *
354 * @return array
355 */
356 public static function groupVisibility() {
357 return [
358 'User and User Admin Only' => ts('User and User Admin Only'),
359 'Public Pages' => ts('Public Pages'),
360 ];
361 }
362
363 /**
364 * Different type of Mailing Components.
365 *
366 * @return array
367 */
368 public static function mailingComponents() {
369 return [
370 'Header' => ts('Header'),
371 'Footer' => ts('Footer'),
372 'Reply' => ts('Reply Auto-responder'),
373 'OptOut' => ts('Opt-out Message'),
374 'Subscribe' => ts('Subscription Confirmation Request'),
375 'Welcome' => ts('Welcome Message'),
376 'Unsubscribe' => ts('Unsubscribe Message'),
377 'Resubscribe' => ts('Resubscribe Message'),
378 ];
379 }
380
381 /**
382 * Get hours.
383 *
384 * @return array
385 */
386 public function getHours() {
387 $hours = [];
388 for ($i = 0; $i <= 6; $i++) {
389 $hours[$i] = $i;
390 }
391 return $hours;
392 }
393
394 /**
395 * Get minutes.
396 *
397 * @return array
398 */
399 public function getMinutes() {
400 $minutes = [];
401 for ($i = 0; $i < 60; $i = $i + 15) {
402 $minutes[$i] = $i;
403 }
404 return $minutes;
405 }
406
407 /**
408 * Get the Map Provider.
409 *
410 * @return array
411 * array of map providers
412 */
413 public static function mapProvider() {
414 static $map = NULL;
415 if (!$map) {
416 $map = ['' => '- select -'] + CRM_Utils_System::getPluginList('templates/CRM/Contact/Form/Task/Map', ".tpl");
417 }
418 return $map;
419 }
420
421 /**
422 * Get the Geocoding Providers from available plugins.
423 *
424 * @return array
425 * array of geocoder providers
426 */
427 public static function geoProvider() {
428 static $geo = NULL;
429 if (!$geo) {
430 $geo = ['' => '- select -'] + CRM_Utils_System::getPluginList('CRM/Utils/Geocode');
431 }
432 return $geo;
433 }
434
435 /**
436 * Get options for displaying tax.
437 *
438 * @return array
439 *
440 * @throws \CRM_Core_Exception
441 */
442 public static function taxDisplayOptions() {
443 return [
444 'Do_not_show' => ts('Do not show breakdown, only show total - i.e %1', [
445 1 => CRM_Utils_Money::format(120),
446 ]),
447 'Inclusive' => ts('Show [tax term] inclusive price - i.e. %1', [
448 1 => ts('%1 (includes [tax term] of %2)', [1 => CRM_Utils_Money::format(120), 2 => CRM_Utils_Money::format(20)]),
449 ]),
450 'Exclusive' => ts('Show [tax term] exclusive price - i.e. %1', [
451 1 => ts('%1 + %2 [tax term]', [1 => CRM_Utils_Money::format(120), 2 => CRM_Utils_Money::format(20)]),
452 ]),
453 ];
454 }
455
456 /**
457 * Get the Address Standardization Providers from available plugins.
458 *
459 * @return array
460 * array of address standardization providers
461 */
462 public static function addressProvider() {
463 static $addr = NULL;
464 if (!$addr) {
465 $addr = array_merge(['' => '- select -'], CRM_Utils_System::getPluginList('CRM/Utils/Address', '.php', ['BatchUpdate']));
466 }
467 return $addr;
468 }
469
470 /**
471 * Different type of Mailing Tokens.
472 *
473 * @return array
474 */
475 public static function mailingTokens() {
476 return [
477 '{action.unsubscribe}' => ts('Unsubscribe via email'),
478 '{action.unsubscribeUrl}' => ts('Unsubscribe via web page'),
479 '{action.resubscribe}' => ts('Resubscribe via email'),
480 '{action.resubscribeUrl}' => ts('Resubscribe via web page'),
481 '{action.optOut}' => ts('Opt out via email'),
482 '{action.optOutUrl}' => ts('Opt out via web page'),
483 '{action.forward}' => ts('Forward this email (link)'),
484 '{action.reply}' => ts('Reply to this email (link)'),
485 '{action.subscribeUrl}' => ts('Subscribe via web page'),
486 '{mailing.key}' => ts('Mailing key'),
487 '{mailing.name}' => ts('Mailing name'),
488 '{mailing.group}' => ts('Mailing group'),
489 '{mailing.viewUrl}' => ts('Mailing permalink'),
490 ] + self::domainTokens();
491 }
492
493 /**
494 * Domain tokens
495 *
496 * @return array
497 *
498 * @deprecated
499 */
500 public static function domainTokens() {
501 $tokenProcessor = new TokenProcessor(Civi::dispatcher(), []);
502 return $tokenProcessor->listTokens();
503 }
504
505 /**
506 * Different type of Activity Tokens.
507 *
508 * @return array
509 */
510 public static function activityTokens() {
511 return [
512 '{activity.activity_id}' => ts('Activity ID'),
513 '{activity.subject}' => ts('Activity Subject'),
514 '{activity.details}' => ts('Activity Details'),
515 '{activity.activity_date_time}' => ts('Activity Date Time'),
516 ];
517 }
518
519 /**
520 * Different type of Membership Tokens.
521 *
522 * @return array
523 */
524 public static function membershipTokens(): array {
525 return [
526 '{membership.id}' => ts('Membership ID'),
527 '{membership.status_id:label}' => ts('Membership Status'),
528 '{membership.membership_type_id:label}' => ts('Membership Type'),
529 '{membership.start_date}' => ts('Membership Start Date'),
530 '{membership.join_date}' => ts('Membership Join Date'),
531 '{membership.end_date}' => ts('Membership End Date'),
532 '{membership.fee}' => ts('Membership Fee'),
533 ];
534 }
535
536 /**
537 * Different type of Event Tokens.
538 *
539 * @deprecated
540 *
541 * @return array
542 */
543 public static function eventTokens(): array {
544 $tokenProcessor = new TokenProcessor(Civi::dispatcher(), ['schema' => ['eventId']]);
545 $allTokens = $tokenProcessor->listTokens();
546 foreach (array_keys($allTokens) as $token) {
547 if (strpos($token, '{domain.') === 0) {
548 unset($allTokens[$token]);
549 }
550 }
551 return $allTokens;
552 }
553
554 /**
555 * Different type of Contribution Tokens.
556 *
557 * @deprecated
558 *
559 * @return array
560 */
561 public static function contributionTokens(): array {
562 $tokenProcessor = new TokenProcessor(Civi::dispatcher(), ['schema' => ['contributionId']]);
563 $allTokens = $tokenProcessor->listTokens();
564 foreach (array_keys($allTokens) as $token) {
565 if (strpos($token, '{domain.') === 0) {
566 unset($allTokens[$token]);
567 }
568 }
569 return $allTokens;
570 }
571
572 /**
573 * Different type of Contact Tokens.
574 *
575 * @deprecated
576 *
577 * @return array
578 */
579 public static function contactTokens(): array {
580 $tokenProcessor = new TokenProcessor(Civi::dispatcher(), ['schema' => ['contactId']]);
581 $allTokens = $tokenProcessor->listTokens();
582 foreach (array_keys($allTokens) as $token) {
583 if (strpos($token, '{domain.') === 0) {
584 unset($allTokens[$token]);
585 }
586 }
587 return $allTokens;
588 }
589
590 /**
591 * Different type of Participant Tokens.
592 *
593 * @return array
594 */
595 public static function participantTokens(): array {
596 $tokens = [
597 '{participant.status_id}' => 'Status ID',
598 '{participant.role_id}' => 'Participant Role (ID)',
599 '{participant.register_date}' => 'Register date',
600 '{participant.source}' => 'Participant Source',
601 '{participant.fee_level}' => 'Fee level',
602 '{participant.fee_amount}' => 'Fee Amount',
603 '{participant.registered_by_id}' => 'Registered By Participant ID',
604 '{participant.transferred_to_contact_id}' => 'Transferred to Contact ID',
605 '{participant.role_id:label}' => 'Participant Role (label)',
606 '{participant.fee_label}' => 'Fee Label',
607 ];
608 $customFields = CRM_Core_BAO_CustomField::getFields('Participant');
609
610 foreach ($customFields as $customField) {
611 $tokens['{participant.custom_' . $customField['id'] . '}'] = $customField['label'] . " :: " . $customField['groupTitle'];
612 }
613
614 return $tokens;
615 }
616
617 /**
618 * @param int $caseTypeId
619 * @return array
620 */
621 public static function caseTokens($caseTypeId = NULL) {
622 static $tokens = NULL;
623 if (!$tokens) {
624 $tokens = [
625 '{case.id}' => 'Case ID',
626 '{case.case_type_id:label}' => 'Case Type',
627 '{case.subject}' => 'Case Subject',
628 '{case.start_date}' => 'Case Start Date',
629 '{case.end_date}' => 'Case End Date',
630 '{case.details}' => 'Details',
631 '{case.status_id:label}' => 'Case Status',
632 '{case.is_deleted:label}' => 'Case is in the Trash',
633 '{case.created_date}' => 'Created Date',
634 '{case.modified_date}' => 'Modified Date',
635 ];
636
637 $customFields = CRM_Core_BAO_CustomField::getFields('Case', FALSE, FALSE, $caseTypeId);
638 foreach ($customFields as $id => $field) {
639 $tokens["{case.custom_$id}"] = "{$field['label']} :: {$field['groupTitle']}";
640 }
641 }
642 return $tokens;
643 }
644
645 /**
646 * CiviCRM supported date input formats.
647 *
648 * @return array
649 */
650 public static function getDatePluginInputFormats() {
651 return [
652 'mm/dd/yy' => ts('mm/dd/yy (12/31/2009)'),
653 'dd/mm/yy' => ts('dd/mm/yy (31/12/2009)'),
654 'yy-mm-dd' => ts('yy-mm-dd (2009-12-31)'),
655 'dd-mm-yy' => ts('dd-mm-yy (31-12-2009)'),
656 'dd.mm.yy' => ts('dd.mm.yy (31.12.2009)'),
657 'M d, yy' => ts('M d, yy (Dec 31, 2009)'),
658 'd M yy' => ts('d M yy (31 Dec 2009)'),
659 'MM d, yy' => ts('MM d, yy (December 31, 2009)'),
660 'd MM yy' => ts('d MM yy (31 December 2009)'),
661 'DD, d MM yy' => ts('DD, d MM yy (Thursday, 31 December 2009)'),
662 'mm/dd' => ts('mm/dd (12/31)'),
663 'dd-mm' => ts('dd-mm (31-12)'),
664 'yy-mm' => ts('yy-mm (2009-12)'),
665 'M yy' => ts('M yy (Dec 2009)'),
666 'yy' => ts('yy (2009)'),
667 ];
668 }
669
670 /**
671 * Time formats.
672 *
673 * @return array
674 */
675 public static function getTimeFormats() {
676 return [
677 '1' => ts('12 Hours'),
678 '2' => ts('24 Hours'),
679 ];
680 }
681
682 /**
683 * Get numeric options.
684 *
685 * @param int $start
686 * @param int $end
687 *
688 * @return array
689 */
690 public static function getNumericOptions($start = 0, $end = 10) {
691 $numericOptions = [];
692 for ($i = $start; $i <= $end; $i++) {
693 $numericOptions[$i] = $i;
694 }
695 return $numericOptions;
696 }
697
698 /**
699 * Barcode types.
700 *
701 * @return array
702 */
703 public static function getBarcodeTypes() {
704 return [
705 'barcode' => ts('Linear (1D)'),
706 'qrcode' => ts('QR code'),
707 ];
708 }
709
710 /**
711 * Dedupe rule types.
712 *
713 * @return array
714 */
715 public static function getDedupeRuleTypes() {
716 return [
717 'Unsupervised' => ts('Unsupervised'),
718 'Supervised' => ts('Supervised'),
719 'General' => ts('General'),
720 ];
721 }
722
723 /**
724 * Campaign group types.
725 *
726 * @return array
727 */
728 public static function getCampaignGroupTypes() {
729 return [
730 'Include' => ts('Include'),
731 'Exclude' => ts('Exclude'),
732 ];
733 }
734
735 /**
736 * Subscription history method.
737 *
738 * @return array
739 */
740 public static function getSubscriptionHistoryMethods() {
741 return [
742 'Admin' => ts('Admin'),
743 'Email' => ts('Email'),
744 'Web' => ts('Web'),
745 'API' => ts('API'),
746 ];
747 }
748
749 /**
750 * Premium units.
751 *
752 * @return array
753 */
754 public static function getPremiumUnits() {
755 return [
756 'day' => ts('Day'),
757 'week' => ts('Week'),
758 'month' => ts('Month'),
759 'year' => ts('Year'),
760 ];
761 }
762
763 /**
764 * Extension types.
765 *
766 * @return array
767 */
768 public static function getExtensionTypes() {
769 return [
770 'payment' => ts('Payment'),
771 'search' => ts('Search'),
772 'report' => ts('Report'),
773 'module' => ts('Module'),
774 'sms' => ts('SMS'),
775 ];
776 }
777
778 /**
779 * Job frequency.
780 *
781 * @return array
782 */
783 public static function getJobFrequency() {
784 return [
785 // CRM-17669
786 'Yearly' => ts('Yearly'),
787 'Quarter' => ts('Quarterly'),
788 'Monthly' => ts('Monthly'),
789 'Weekly' => ts('Weekly'),
790
791 'Daily' => ts('Daily'),
792 'Hourly' => ts('Hourly'),
793 'Always' => ts('Every time cron job is run'),
794 ];
795 }
796
797 /**
798 * Search builder operators.
799 *
800 * @return array
801 */
802 public static function getSearchBuilderOperators() {
803 return [
804 '=' => '=',
805 '!=' => '≠',
806 '>' => '>',
807 '<' => '<',
808 '>=' => '≥',
809 '<=' => '≤',
810 'IN' => ts('In'),
811 'NOT IN' => ts('Not In'),
812 'LIKE' => ts('Like'),
813 'NOT LIKE' => ts('Not Like'),
814 'RLIKE' => ts('Regex'),
815 'IS EMPTY' => ts('Is Empty'),
816 'IS NOT EMPTY' => ts('Not Empty'),
817 'IS NULL' => ts('Is Null'),
818 'IS NOT NULL' => ts('Not Null'),
819 ];
820 }
821
822 /**
823 * Profile group types.
824 *
825 * @return array
826 */
827 public static function getProfileGroupType() {
828 $profileGroupType = [
829 'Activity' => ts('Activities'),
830 'Contribution' => ts('Contributions'),
831 'Membership' => ts('Memberships'),
832 'Participant' => ts('Participants'),
833 ];
834 $contactTypes = self::contactType();
835 $contactTypes = !empty($contactTypes) ? ['Contact' => 'Contacts'] + $contactTypes : [];
836 $profileGroupType = array_merge($contactTypes, $profileGroupType);
837
838 return $profileGroupType;
839 }
840
841 /**
842 * Word replacement match type.
843 *
844 * @return array
845 */
846 public static function getWordReplacementMatchType() {
847 return [
848 'exactMatch' => ts('Exact Match'),
849 'wildcardMatch' => ts('Wildcard Match'),
850 ];
851 }
852
853 /**
854 * Mailing group types.
855 *
856 * @return array
857 */
858 public static function getMailingGroupTypes() {
859 return [
860 'Include' => ts('Include'),
861 'Exclude' => ts('Exclude'),
862 'Base' => ts('Base'),
863 ];
864 }
865
866 /**
867 * Mailing Job Status.
868 *
869 * @return array
870 */
871 public static function getMailingJobStatus() {
872 return [
873 'Scheduled' => ts('Scheduled'),
874 'Running' => ts('Running'),
875 'Complete' => ts('Complete'),
876 'Paused' => ts('Paused'),
877 'Canceled' => ts('Canceled'),
878 ];
879 }
880
881 /**
882 * @return array
883 */
884 public static function billingMode() {
885 return [
886 CRM_Core_Payment::BILLING_MODE_FORM => 'form',
887 CRM_Core_Payment::BILLING_MODE_BUTTON => 'button',
888 CRM_Core_Payment::BILLING_MODE_NOTIFY => 'notify',
889 ];
890 }
891
892 /**
893 * @return array
894 */
895 public static function contributeMode() {
896 return [
897 CRM_Core_Payment::BILLING_MODE_FORM => 'direct',
898 CRM_Core_Payment::BILLING_MODE_BUTTON => 'directIPN',
899 CRM_Core_Payment::BILLING_MODE_NOTIFY => 'notify',
900 ];
901 }
902
903 /**
904 * Frequency unit for schedule reminders.
905 *
906 * @param int $count
907 * For pluralization
908 * @return array
909 */
910 public static function getRecurringFrequencyUnits($count = 1) {
911 // @todo this used to refer to the 'recur_frequency_unit' option_values which
912 // is for recurring payments and probably not good to re-use for recurring entities.
913 // If something other than a hard-coded list is desired, add a new option_group.
914 return [
915 'hour' => ts('hour', ['plural' => 'hours', 'count' => $count]),
916 'day' => ts('day', ['plural' => 'days', 'count' => $count]),
917 'week' => ts('week', ['plural' => 'weeks', 'count' => $count]),
918 'month' => ts('month', ['plural' => 'months', 'count' => $count]),
919 'year' => ts('year', ['plural' => 'years', 'count' => $count]),
920 ];
921 }
922
923 /**
924 * Relative Date Terms.
925 *
926 * @return array
927 */
928 public static function getRelativeDateTerms() {
929 return [
930 'previous' => ts('Previous'),
931 'previous_2' => ts('Previous 2'),
932 'previous_before' => ts('Prior to Previous'),
933 'before_previous' => ts('All Prior to Previous'),
934 'earlier' => ts('To End of Previous'),
935 'greater_previous' => ts('From End of Previous'),
936 'greater' => ts('From Start Of Current'),
937 'current' => ts('Current'),
938 'ending_3' => ts('Last 3'),
939 'ending_2' => ts('Last 2'),
940 'ending' => ts('Last'),
941 'this' => ts('This'),
942 'starting' => ts('Upcoming'),
943 'less' => ts('To End of'),
944 'next' => ts('Next'),
945 ];
946 }
947
948 /**
949 * Relative Date Units.
950 *
951 * @return array
952 */
953 public static function getRelativeDateUnits() {
954 return [
955 'year' => ts('Years'),
956 'fiscal_year' => ts('Fiscal Years'),
957 'quarter' => ts('Quarters'),
958 'month' => ts('Months'),
959 'week' => ts('Weeks'),
960 'day' => ts('Days'),
961 ];
962 }
963
964 /**
965 * Exportable document formats.
966 *
967 * @return array
968 */
969 public static function documentFormat() {
970 return [
971 'pdf' => ts('Portable Document Format (.pdf)'),
972 'docx' => ts('MS Word (.docx)'),
973 'odt' => ts('Open Office (.odt)'),
974 'html' => ts('Webpage (.html)'),
975 ];
976 }
977
978 /**
979 * Application type of document.
980 *
981 * @return array
982 */
983 public static function documentApplicationType() {
984 return [
985 'docx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
986 'odt' => 'application/vnd.oasis.opendocument.text',
987 ];
988 }
989
990 /**
991 * Activity Text options.
992 *
993 * @return array
994 */
995 public static function activityTextOptions() {
996 return [
997 2 => ts('Details Only'),
998 3 => ts('Subject Only'),
999 6 => ts('Both'),
1000 ];
1001 }
1002
1003 /**
1004 * Relationship permissions
1005 *
1006 * @return array
1007 */
1008 public static function getPermissionedRelationshipOptions() {
1009 return [
1010 CRM_Contact_BAO_Relationship::NONE => ts('None'),
1011 CRM_Contact_BAO_Relationship::VIEW => ts('View only'),
1012 CRM_Contact_BAO_Relationship::EDIT => ts('View and update'),
1013 ];
1014 }
1015
1016 /**
1017 * Get option values for dashboard entries (used for 'how many events to display on dashboard').
1018 *
1019 * @return array
1020 * Dashboard entries options - in practice [-1 => 'Show All', 10 => 10, 20 => 20, ... 100 => 100].
1021 */
1022 public static function getDashboardEntriesCount() {
1023 $optionValues = [];
1024 $optionValues[-1] = ts('show all');
1025 for ($i = 10; $i <= 100; $i += 10) {
1026 $optionValues[$i] = $i;
1027 }
1028 return $optionValues;
1029 }
1030
1031 /**
1032 * Dropdown options for quicksearch in the menu
1033 *
1034 * @return array
1035 * @throws \CiviCRM_API3_Exception
1036 */
1037 public static function quicksearchOptions() {
1038 $includeEmail = civicrm_api3('setting', 'getvalue', ['name' => 'includeEmailInName', 'group' => 'Search Preferences']);
1039 $options = [
1040 'sort_name' => $includeEmail ? ts('Name/Email') : ts('Name'),
1041 'contact_id' => ts('Contact ID'),
1042 'external_identifier' => ts('External ID'),
1043 'first_name' => ts('First Name'),
1044 'last_name' => ts('Last Name'),
1045 'email' => ts('Email'),
1046 'phone_numeric' => ts('Phone'),
1047 'street_address' => ts('Street Address'),
1048 'city' => ts('City'),
1049 'postal_code' => ts('Postal Code'),
1050 'job_title' => ts('Job Title'),
1051 ];
1052 $custom = civicrm_api3('CustomField', 'get', [
1053 'return' => ['name', 'label', 'custom_group_id.title'],
1054 'custom_group_id.extends' => ['IN' => ['Contact', 'Individual', 'Organization', 'Household']],
1055 'data_type' => ['NOT IN' => ['ContactReference', 'Date', 'File']],
1056 'custom_group_id.is_active' => 1,
1057 'is_active' => 1,
1058 'is_searchable' => 1,
1059 'options' => ['sort' => ['custom_group_id.weight', 'weight'], 'limit' => 0],
1060 ]);
1061 foreach ($custom['values'] as $field) {
1062 $options['custom_' . $field['name']] = $field['custom_group_id.title'] . ': ' . $field['label'];
1063 }
1064 return $options;
1065 }
1066
1067 /**
1068 * Get components (translated for display.
1069 *
1070 * @return array
1071 *
1072 * @throws \Exception
1073 */
1074 public static function getComponentSelectValues() {
1075 $ret = [];
1076 $components = CRM_Core_Component::getComponents();
1077 foreach ($components as $name => $object) {
1078 $ret[$name] = $object->info['translatedName'];
1079 }
1080
1081 return $ret;
1082 }
1083
1084 /**
1085 * @return string[]
1086 */
1087 public static function fieldSerialization() {
1088 return [
1089 CRM_Core_DAO::SERIALIZE_SEPARATOR_BOOKEND => 'separator_bookend',
1090 CRM_Core_DAO::SERIALIZE_SEPARATOR_TRIMMED => 'separator_trimmed',
1091 CRM_Core_DAO::SERIALIZE_JSON => 'json',
1092 CRM_Core_DAO::SERIALIZE_PHP => 'php',
1093 CRM_Core_DAO::SERIALIZE_COMMA => 'comma',
1094 ];
1095 }
1096
1097 /**
1098 * @return array
1099 */
1100 public static function navigationMenuSeparator() {
1101 return [
1102 ts('None'),
1103 ts('After menu element'),
1104 ts('Before menu element'),
1105 ];
1106 }
1107
1108 /**
1109 * @return array
1110 */
1111 public static function relationshipOrientation() {
1112 return [
1113 'a_b' => ts('A to B'),
1114 'b_a' => ts('B to A'),
1115 ];
1116 }
1117
1118 }