Merge pull request #13050 from mlutfy/i18n-getlocale
[civicrm-core.git] / settings / Contribute.setting.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2017 |
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 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2017
32 *
33 * Settings metadata file
34 */
35
36 return array(
37 'cvv_backoffice_required' => array(
38 'group_name' => 'Contribute Preferences',
39 'group' => 'contribute',
40 'name' => 'cvv_backoffice_required',
41 'type' => 'Boolean',
42 'html_type' => 'radio',
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 ),
52 'contribution_invoice_settings' => array(
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.
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 ),
75 'invoicing' => array(
76 'group_name' => 'Contribute Preferences',
77 'group' => 'contribute',
78 'name' => 'invoicing',
79 'type' => 'Boolean',
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',
94 'type' => 'Boolean',
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 'help' => ['id' => 'acl_financial_type'],
105 ),
106 'deferred_revenue_enabled' => array(
107 'group_name' => 'Contribute Preferences',
108 'group' => 'contribute',
109 'name' => 'deferred_revenue_enabled',
110 'type' => 'Boolean',
111 'html_type' => 'checkbox',
112 'quick_form_type' => 'Element',
113 'default' => 0,
114 'add' => '4.7',
115 'title' => 'Enable Deferred Revenue',
116 'is_domain' => 1,
117 'is_contact' => 0,
118 'description' => NULL,
119 'help_text' => NULL,
120 ),
121 'default_invoice_page' => array(
122 'group_name' => 'Contribute Preferences',
123 'group' => 'contribute',
124 'name' => 'default_invoice_page',
125 'type' => 'Integer',
126 'quick_form_type' => 'Select',
127 'default' => NULL,
128 'pseudoconstant' => array(
129 // @todo - handle table style pseudoconstants for settings & avoid deprecated function.
130 'callback' => 'CRM_Contribute_PseudoConstant::contributionPage',
131 ),
132 'html_type' => 'select',
133 'add' => '4.7',
134 'title' => 'Default invoice payment page',
135 'is_domain' => 1,
136 'is_contact' => 0,
137 'description' => NULL,
138 'help_text' => NULL,
139 ),
140 'always_post_to_accounts_receivable' => array(
141 'group_name' => 'Contribute Preferences',
142 'group' => 'contribute',
143 'name' => 'always_post_to_accounts_receivable',
144 'type' => 'Boolean',
145 'html_type' => 'checkbox',
146 'quick_form_type' => 'Element',
147 'default' => 0,
148 'add' => '4.7',
149 'title' => 'Always post to Accounts Receivable?',
150 'is_domain' => 1,
151 'is_contact' => 0,
152 'description' => NULL,
153 'help_text' => NULL,
154 ),
155 'update_contribution_on_membership_type_change' => array(
156 'group_name' => 'Contribute Preferences',
157 'group' => 'contribute',
158 'name' => 'update_contribution_on_membership_type_change',
159 'type' => 'Boolean',
160 'html_type' => 'checkbox',
161 'quick_form_type' => 'Element',
162 'default' => 0,
163 'add' => '4.7',
164 'title' => 'Automatically update related contributions when Membership Type is changed',
165 'is_domain' => 1,
166 'is_contact' => 0,
167 'description' => 'Enabling this setting will update related contribution of membership(s) except if the membership is paid for with a recurring contribution.',
168 'help_text' => NULL,
169 ),
170 );