Merge pull request #13039 from colemanw/quicksearchSetting
[civicrm-core.git] / settings / Contribute.setting.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
4a99ac35 6 | Copyright CiviCRM LLC (c) 2004-2017 |
6a488035
TO
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
4a99ac35 31 * @copyright CiviCRM LLC (c) 2004-2017
6a488035 32 *
6a488035
TO
33 * Settings metadata file
34 */
35
36return array(
37 'cvv_backoffice_required' => array(
38 'group_name' => 'Contribute Preferences',
39 'group' => 'contribute',
40 'name' => 'cvv_backoffice_required',
41 'type' => 'Boolean',
2f6c641a 42 'html_type' => 'radio',
6a488035
TO
43 'quick_form_type' => 'YesNo',
44 'default' => '1',
45 'add' => '4.1',
46 'title' => 'CVV required for backoffice?',
47 'is_domain' => 1,
48 'is_contact' => 0,
49 'description' => 'Is the CVV code required for back office credit card transactions',
50 'help_text' => 'If set it back-office credit card transactions will required a cvv code. Leave as required unless you have a very strong reason to change',
51 ),
007e3bdc 52 'contribution_invoice_settings' => array(
2f6c641a 53 // @todo our standard is to have a setting per item not to hide settings in an array with
54 // no useful metadata. Undo this setting.
007e3bdc
TO
55 'group_name' => 'Contribute Preferences',
56 'group' => 'contribute',
57 'name' => 'contribution_invoice_settings',
58 'type' => 'Array',
59 'default' => array(
60 'invoice_prefix' => 'INV_',
61 'credit_notes_prefix' => 'CN_',
62 'due_date' => '10',
63 'due_date_period' => 'days',
64 'notes' => '',
65 'tax_term' => 'Sales Tax',
66 'tax_display_settings' => 'Inclusive',
67 ),
68 'add' => '4.7',
69 'title' => 'Contribution Invoice Settings',
70 'is_domain' => 1,
71 'is_contact' => 0,
72 'description' => NULL,
73 'help_text' => NULL,
74 ),
201b45e2
PN
75 'invoicing' => array(
76 'group_name' => 'Contribute Preferences',
77 'group' => 'contribute',
78 'name' => 'invoicing',
0e700ee7 79 'type' => 'Boolean',
201b45e2
PN
80 'html_type' => 'checkbox',
81 'quick_form_type' => 'Element',
82 'default' => 0,
83 'add' => '4.7',
84 'title' => 'Enable Tax and Invoicing',
85 'is_domain' => 1,
86 'is_contact' => 0,
87 'description' => NULL,
88 'help_text' => NULL,
89 ),
90 'acl_financial_type' => array(
91 'group_name' => 'Contribute Preferences',
92 'group' => 'contribute',
93 'name' => 'acl_financial_type',
0e700ee7 94 'type' => 'Boolean',
201b45e2
PN
95 'html_type' => 'checkbox',
96 'quick_form_type' => 'Element',
97 'default' => 0,
98 'add' => '4.7',
99 'title' => 'Enable Access Control by Financial Type',
100 'is_domain' => 1,
101 'is_contact' => 0,
102 'description' => NULL,
103 'help_text' => NULL,
104 ),
105 'deferred_revenue_enabled' => array(
106 'group_name' => 'Contribute Preferences',
107 'group' => 'contribute',
108 'name' => 'deferred_revenue_enabled',
0e700ee7 109 'type' => 'Boolean',
201b45e2
PN
110 'html_type' => 'checkbox',
111 'quick_form_type' => 'Element',
112 'default' => 0,
113 'add' => '4.7',
114 'title' => 'Enable Deferred Revenue',
115 'is_domain' => 1,
116 'is_contact' => 0,
117 'description' => NULL,
118 'help_text' => NULL,
119 ),
120 'default_invoice_page' => array(
121 'group_name' => 'Contribute Preferences',
122 'group' => 'contribute',
123 'name' => 'default_invoice_page',
124 'type' => 'Integer',
0e700ee7 125 'quick_form_type' => 'Select',
201b45e2
PN
126 'default' => NULL,
127 'pseudoconstant' => array(
33b93c35 128 // @todo - handle table style pseudoconstants for settings & avoid deprecated function.
129 'callback' => 'CRM_Contribute_PseudoConstant::contributionPage',
201b45e2
PN
130 ),
131 'html_type' => 'select',
132 'add' => '4.7',
133 'title' => 'Default invoice payment page',
134 'is_domain' => 1,
135 'is_contact' => 0,
136 'description' => NULL,
137 'help_text' => NULL,
138 ),
4af9c91d
PN
139 'always_post_to_accounts_receivable' => array(
140 'group_name' => 'Contribute Preferences',
141 'group' => 'contribute',
142 'name' => 'always_post_to_accounts_receivable',
0e700ee7 143 'type' => 'Boolean',
4af9c91d
PN
144 'html_type' => 'checkbox',
145 'quick_form_type' => 'Element',
146 'default' => 0,
147 'add' => '4.7',
fc6e98b3 148 'title' => 'Always post to Accounts Receivable?',
4af9c91d
PN
149 'is_domain' => 1,
150 'is_contact' => 0,
151 'description' => NULL,
152 'help_text' => NULL,
153 ),
268a84f2 154 'update_contribution_on_membership_type_change' => array(
155 'group_name' => 'Contribute Preferences',
156 'group' => 'contribute',
157 'name' => 'update_contribution_on_membership_type_change',
0e700ee7 158 'type' => 'Boolean',
268a84f2 159 'html_type' => 'checkbox',
160 'quick_form_type' => 'Element',
161 'default' => 0,
162 'add' => '4.7',
163 'title' => 'Automatically update related contributions when Membership Type is changed',
164 'is_domain' => 1,
165 'is_contact' => 0,
166 'description' => 'Enabling this setting will update related contribution of membership(s) except if the membership is paid for with a recurring contribution.',
167 'help_text' => NULL,
168 ),
232624b1 169);