Merge pull request #10017 from colemanw/CRM-20302
[civicrm-core.git] / CRM / Financial / DAO / FinancialType.php
CommitLineData
e501603b
TO
1<?php
2/*
3+--------------------------------------------------------------------+
4| CiviCRM version 4.7 |
5+--------------------------------------------------------------------+
0f03f337 6| Copyright CiviCRM LLC (c) 2004-2017 |
e501603b
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+--------------------------------------------------------------------+
26*/
27/**
28 * @package CRM
0f03f337 29 * @copyright CiviCRM LLC (c) 2004-2017
e501603b
TO
30 *
31 * Generated from xml/schema/CRM/Financial/FinancialType.xml
32 * DO NOT EDIT. Generated by CRM_Core_CodeGen
522a26c9 33 * (GenCodeChecksum:9afeed9e1cb73cc4abf490d723ff4ea1)
e501603b
TO
34 */
35require_once 'CRM/Core/DAO.php';
36require_once 'CRM/Utils/Type.php';
f41f0342 37/**
38 * CRM_Financial_DAO_FinancialType constructor.
39 */
e501603b
TO
40class CRM_Financial_DAO_FinancialType extends CRM_Core_DAO {
41 /**
f41f0342 42 * Static instance to hold the table name.
e501603b
TO
43 *
44 * @var string
45 */
46 static $_tableName = 'civicrm_financial_type';
e501603b 47 /**
f41f0342 48 * Should CiviCRM log any modifications to this table in the civicrm_log table.
e501603b
TO
49 *
50 * @var boolean
51 */
52 static $_log = true;
53 /**
54 * ID of original financial_type so you can search this table by the financial_type.id and then select the relevant version based on the timestamp
55 *
56 * @var int unsigned
57 */
58 public $id;
59 /**
60 * Financial Type Name.
61 *
62 * @var string
63 */
64 public $name;
65 /**
66 * Financial Type Description.
67 *
68 * @var string
69 */
70 public $description;
71 /**
72 * Is this financial type tax-deductible? If true, contributions of this type may be fully OR partially deductible - non-deductible amount is stored in the Contribution record.
73 *
74 * @var boolean
75 */
76 public $is_deductible;
77 /**
78 * Is this a predefined system object?
79 *
80 * @var boolean
81 */
82 public $is_reserved;
83 /**
84 * Is this property active?
85 *
86 * @var boolean
87 */
88 public $is_active;
89 /**
f41f0342 90 * Class constructor.
e501603b
TO
91 */
92 function __construct() {
93 $this->__table = 'civicrm_financial_type';
94 parent::__construct();
95 }
96 /**
97 * Returns all the column names of this table
98 *
99 * @return array
100 */
101 static function &fields() {
346aaaba
TO
102 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
103 Civi::$statics[__CLASS__]['fields'] = array(
e501603b
TO
104 'id' => array(
105 'name' => 'id',
106 'type' => CRM_Utils_Type::T_INT,
107 'title' => ts('Financial Type ID') ,
108 'description' => 'ID of original financial_type so you can search this table by the financial_type.id and then select the relevant version based on the timestamp',
109 'required' => true,
522a26c9 110 'table_name' => 'civicrm_financial_type',
111 'entity' => 'FinancialType',
112 'bao' => 'CRM_Financial_BAO_FinancialType',
e501603b
TO
113 ) ,
114 'financial_type' => array(
115 'name' => 'name',
116 'type' => CRM_Utils_Type::T_STRING,
117 'title' => ts('Financial Type') ,
118 'description' => 'Financial Type Name.',
119 'required' => true,
120 'maxlength' => 64,
121 'size' => CRM_Utils_Type::BIG,
122 'import' => true,
123 'where' => 'civicrm_financial_type.name',
124 'headerPattern' => '/(finan(cial)?)?type/i',
125 'dataPattern' => '/donation|member|campaign/i',
126 'export' => true,
522a26c9 127 'table_name' => 'civicrm_financial_type',
128 'entity' => 'FinancialType',
129 'bao' => 'CRM_Financial_BAO_FinancialType',
e501603b
TO
130 ) ,
131 'description' => array(
132 'name' => 'description',
133 'type' => CRM_Utils_Type::T_STRING,
134 'title' => ts('Description') ,
135 'description' => 'Financial Type Description.',
136 'maxlength' => 255,
137 'size' => CRM_Utils_Type::HUGE,
522a26c9 138 'table_name' => 'civicrm_financial_type',
139 'entity' => 'FinancialType',
140 'bao' => 'CRM_Financial_BAO_FinancialType',
e501603b
TO
141 ) ,
142 'is_deductible' => array(
143 'name' => 'is_deductible',
144 'type' => CRM_Utils_Type::T_BOOLEAN,
145 'title' => ts('Is Tax Deductible?') ,
146 'description' => 'Is this financial type tax-deductible? If true, contributions of this type may be fully OR partially deductible - non-deductible amount is stored in the Contribution record.',
147 'default' => '1',
522a26c9 148 'table_name' => 'civicrm_financial_type',
149 'entity' => 'FinancialType',
150 'bao' => 'CRM_Financial_BAO_FinancialType',
e501603b
TO
151 ) ,
152 'is_reserved' => array(
153 'name' => 'is_reserved',
154 'type' => CRM_Utils_Type::T_BOOLEAN,
155 'title' => ts('Financial Type is Reserved?') ,
156 'description' => 'Is this a predefined system object?',
522a26c9 157 'table_name' => 'civicrm_financial_type',
158 'entity' => 'FinancialType',
159 'bao' => 'CRM_Financial_BAO_FinancialType',
e501603b
TO
160 ) ,
161 'is_active' => array(
162 'name' => 'is_active',
163 'type' => CRM_Utils_Type::T_BOOLEAN,
164 'title' => ts('Financial Type Is Active?') ,
165 'description' => 'Is this property active?',
522a26c9 166 'table_name' => 'civicrm_financial_type',
167 'entity' => 'FinancialType',
168 'bao' => 'CRM_Financial_BAO_FinancialType',
e501603b
TO
169 ) ,
170 );
346aaaba 171 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
e501603b 172 }
346aaaba 173 return Civi::$statics[__CLASS__]['fields'];
e501603b
TO
174 }
175 /**
bd8e0b14 176 * Return a mapping from field-name to the corresponding key (as used in fields()).
e501603b
TO
177 *
178 * @return array
bd8e0b14 179 * Array(string $name => string $uniqueName).
e501603b
TO
180 */
181 static function &fieldKeys() {
bd8e0b14
TO
182 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
183 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
e501603b 184 }
bd8e0b14 185 return Civi::$statics[__CLASS__]['fieldKeys'];
e501603b
TO
186 }
187 /**
188 * Returns the names of this table
189 *
190 * @return string
191 */
192 static function getTableName() {
193 return self::$_tableName;
194 }
195 /**
196 * Returns if this table needs to be logged
197 *
198 * @return boolean
199 */
200 function getLog() {
201 return self::$_log;
202 }
203 /**
204 * Returns the list of fields that can be imported
205 *
206 * @param bool $prefix
207 *
208 * @return array
209 */
210 static function &import($prefix = false) {
60808919
TO
211 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'financial_type', $prefix, array());
212 return $r;
e501603b
TO
213 }
214 /**
215 * Returns the list of fields that can be exported
216 *
217 * @param bool $prefix
218 *
219 * @return array
220 */
221 static function &export($prefix = false) {
60808919
TO
222 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'financial_type', $prefix, array());
223 return $r;
e501603b
TO
224 }
225}