CRM-14885 - Import DAO's
[civicrm-core.git] / CRM / Member / DAO / MembershipPayment.php
CommitLineData
e501603b
TO
1<?php
2/*
3+--------------------------------------------------------------------+
4| CiviCRM version 4.7 |
5+--------------------------------------------------------------------+
6| Copyright CiviCRM LLC (c) 2004-2016 |
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
29 * @copyright CiviCRM LLC (c) 2004-2016
30 *
31 * Generated from xml/schema/CRM/Member/MembershipPayment.xml
32 * DO NOT EDIT. Generated by CRM_Core_CodeGen
33 * (GenCodeChecksum:071a70d1fd0826ba11de4e85e8debe92)
34 */
35require_once 'CRM/Core/DAO.php';
36require_once 'CRM/Utils/Type.php';
37class CRM_Member_DAO_MembershipPayment extends CRM_Core_DAO {
38 /**
39 * static instance to hold the table name
40 *
41 * @var string
42 */
43 static $_tableName = 'civicrm_membership_payment';
44 /**
45 * static instance to hold the field values
46 *
47 * @var array
48 */
49 static $_fields = null;
50 /**
51 * static instance to hold the keys used in $_fields for each field.
52 *
53 * @var array
54 */
55 static $_fieldKeys = null;
56 /**
57 * static instance to hold the FK relationships
58 *
59 * @var string
60 */
61 static $_links = null;
62 /**
63 * static instance to hold the values that can
64 * be imported
65 *
66 * @var array
67 */
68 static $_import = null;
69 /**
70 * static instance to hold the values that can
71 * be exported
72 *
73 * @var array
74 */
75 static $_export = null;
76 /**
77 * static value to see if we should log any modifications to
78 * this table in the civicrm_log table
79 *
80 * @var boolean
81 */
82 static $_log = true;
83 /**
84 *
85 * @var int unsigned
86 */
87 public $id;
88 /**
89 * FK to Membership table
90 *
91 * @var int unsigned
92 */
93 public $membership_id;
94 /**
95 * FK to contribution table.
96 *
97 * @var int unsigned
98 */
99 public $contribution_id;
100 /**
101 * class constructor
102 *
103 * @return civicrm_membership_payment
104 */
105 function __construct() {
106 $this->__table = 'civicrm_membership_payment';
107 parent::__construct();
108 }
109 /**
110 * Returns foreign keys and entity references
111 *
112 * @return array
113 * [CRM_Core_Reference_Interface]
114 */
115 static function getReferenceColumns() {
116 if (!self::$_links) {
117 self::$_links = static ::createReferenceColumns(__CLASS__);
118 self::$_links[] = new CRM_Core_Reference_Basic(self::getTableName() , 'membership_id', 'civicrm_membership', 'id');
119 self::$_links[] = new CRM_Core_Reference_Basic(self::getTableName() , 'contribution_id', 'civicrm_contribution', 'id');
120 }
121 return self::$_links;
122 }
123 /**
124 * Returns all the column names of this table
125 *
126 * @return array
127 */
128 static function &fields() {
129 if (!(self::$_fields)) {
130 self::$_fields = array(
131 'id' => array(
132 'name' => 'id',
133 'type' => CRM_Utils_Type::T_INT,
134 'title' => ts('Membership Payment ID') ,
135 'required' => true,
136 ) ,
137 'membership_id' => array(
138 'name' => 'membership_id',
139 'type' => CRM_Utils_Type::T_INT,
140 'title' => ts('Membership') ,
141 'description' => 'FK to Membership table',
142 'required' => true,
143 'FKClassName' => 'CRM_Member_DAO_Membership',
144 ) ,
145 'contribution_id' => array(
146 'name' => 'contribution_id',
147 'type' => CRM_Utils_Type::T_INT,
148 'title' => ts('Contribution') ,
149 'description' => 'FK to contribution table.',
150 'FKClassName' => 'CRM_Contribute_DAO_Contribution',
151 ) ,
152 );
153 }
154 return self::$_fields;
155 }
156 /**
157 * Returns an array containing, for each field, the arary key used for that
158 * field in self::$_fields.
159 *
160 * @return array
161 */
162 static function &fieldKeys() {
163 if (!(self::$_fieldKeys)) {
164 self::$_fieldKeys = array(
165 'id' => 'id',
166 'membership_id' => 'membership_id',
167 'contribution_id' => 'contribution_id',
168 );
169 }
170 return self::$_fieldKeys;
171 }
172 /**
173 * Returns the names of this table
174 *
175 * @return string
176 */
177 static function getTableName() {
178 return self::$_tableName;
179 }
180 /**
181 * Returns if this table needs to be logged
182 *
183 * @return boolean
184 */
185 function getLog() {
186 return self::$_log;
187 }
188 /**
189 * Returns the list of fields that can be imported
190 *
191 * @param bool $prefix
192 *
193 * @return array
194 */
195 static function &import($prefix = false) {
196 if (!(self::$_import)) {
197 self::$_import = array();
198 $fields = self::fields();
199 foreach($fields as $name => $field) {
200 if (CRM_Utils_Array::value('import', $field)) {
201 if ($prefix) {
202 self::$_import['membership_payment'] = & $fields[$name];
203 } else {
204 self::$_import[$name] = & $fields[$name];
205 }
206 }
207 }
208 }
209 return self::$_import;
210 }
211 /**
212 * Returns the list of fields that can be exported
213 *
214 * @param bool $prefix
215 *
216 * @return array
217 */
218 static function &export($prefix = false) {
219 if (!(self::$_export)) {
220 self::$_export = array();
221 $fields = self::fields();
222 foreach($fields as $name => $field) {
223 if (CRM_Utils_Array::value('export', $field)) {
224 if ($prefix) {
225 self::$_export['membership_payment'] = & $fields[$name];
226 } else {
227 self::$_export[$name] = & $fields[$name];
228 }
229 }
230 }
231 }
232 return self::$_export;
233 }
234}