Add "labelField" metadata to entities
[civicrm-core.git] / CRM / Member / DAO / MembershipPayment.php
1 <?php
2
3 /**
4 * @package CRM
5 * @copyright CiviCRM LLC https://civicrm.org/licensing
6 *
7 * Generated from xml/schema/CRM/Member/MembershipPayment.xml
8 * DO NOT EDIT. Generated by CRM_Core_CodeGen
9 * (GenCodeChecksum:da6d071abd8e0d0353dabb2afc00d2bc)
10 */
11
12 /**
13 * Database access object for the MembershipPayment entity.
14 */
15 class CRM_Member_DAO_MembershipPayment extends CRM_Core_DAO {
16 const EXT = 'civicrm';
17 const TABLE_ADDED = '1.5';
18 const COMPONENT = 'CiviMember';
19
20 /**
21 * Static instance to hold the table name.
22 *
23 * @var string
24 */
25 public static $_tableName = 'civicrm_membership_payment';
26
27 /**
28 * Should CiviCRM log any modifications to this table in the civicrm_log table.
29 *
30 * @var bool
31 */
32 public static $_log = TRUE;
33
34 /**
35 * @var int
36 */
37 public $id;
38
39 /**
40 * FK to Membership table
41 *
42 * @var int
43 */
44 public $membership_id;
45
46 /**
47 * FK to contribution table.
48 *
49 * @var int
50 */
51 public $contribution_id;
52
53 /**
54 * Class constructor.
55 */
56 public function __construct() {
57 $this->__table = 'civicrm_membership_payment';
58 parent::__construct();
59 }
60
61 /**
62 * Returns localized title of this entity.
63 *
64 * @param bool $plural
65 * Whether to return the plural version of the title.
66 */
67 public static function getEntityTitle($plural = FALSE) {
68 return $plural ? ts('Membership Payments') : ts('Membership Payment');
69 }
70
71 /**
72 * Returns foreign keys and entity references.
73 *
74 * @return array
75 * [CRM_Core_Reference_Interface]
76 */
77 public static function getReferenceColumns() {
78 if (!isset(Civi::$statics[__CLASS__]['links'])) {
79 Civi::$statics[__CLASS__]['links'] = static::createReferenceColumns(__CLASS__);
80 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'membership_id', 'civicrm_membership', 'id');
81 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'contribution_id', 'civicrm_contribution', 'id');
82 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
83 }
84 return Civi::$statics[__CLASS__]['links'];
85 }
86
87 /**
88 * Returns all the column names of this table
89 *
90 * @return array
91 */
92 public static function &fields() {
93 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
94 Civi::$statics[__CLASS__]['fields'] = [
95 'id' => [
96 'name' => 'id',
97 'type' => CRM_Utils_Type::T_INT,
98 'title' => ts('Membership Payment ID'),
99 'required' => TRUE,
100 'where' => 'civicrm_membership_payment.id',
101 'table_name' => 'civicrm_membership_payment',
102 'entity' => 'MembershipPayment',
103 'bao' => 'CRM_Member_BAO_MembershipPayment',
104 'localizable' => 0,
105 'add' => '1.5',
106 ],
107 'membership_id' => [
108 'name' => 'membership_id',
109 'type' => CRM_Utils_Type::T_INT,
110 'title' => ts('Membership'),
111 'description' => ts('FK to Membership table'),
112 'required' => TRUE,
113 'where' => 'civicrm_membership_payment.membership_id',
114 'table_name' => 'civicrm_membership_payment',
115 'entity' => 'MembershipPayment',
116 'bao' => 'CRM_Member_BAO_MembershipPayment',
117 'localizable' => 0,
118 'FKClassName' => 'CRM_Member_DAO_Membership',
119 'add' => '1.5',
120 ],
121 'contribution_id' => [
122 'name' => 'contribution_id',
123 'type' => CRM_Utils_Type::T_INT,
124 'title' => ts('Contribution'),
125 'description' => ts('FK to contribution table.'),
126 'where' => 'civicrm_membership_payment.contribution_id',
127 'table_name' => 'civicrm_membership_payment',
128 'entity' => 'MembershipPayment',
129 'bao' => 'CRM_Member_BAO_MembershipPayment',
130 'localizable' => 0,
131 'FKClassName' => 'CRM_Contribute_DAO_Contribution',
132 'add' => '2.0',
133 ],
134 ];
135 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
136 }
137 return Civi::$statics[__CLASS__]['fields'];
138 }
139
140 /**
141 * Return a mapping from field-name to the corresponding key (as used in fields()).
142 *
143 * @return array
144 * Array(string $name => string $uniqueName).
145 */
146 public static function &fieldKeys() {
147 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
148 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
149 }
150 return Civi::$statics[__CLASS__]['fieldKeys'];
151 }
152
153 /**
154 * Returns the names of this table
155 *
156 * @return string
157 */
158 public static function getTableName() {
159 return self::$_tableName;
160 }
161
162 /**
163 * Returns if this table needs to be logged
164 *
165 * @return bool
166 */
167 public function getLog() {
168 return self::$_log;
169 }
170
171 /**
172 * Returns the list of fields that can be imported
173 *
174 * @param bool $prefix
175 *
176 * @return array
177 */
178 public static function &import($prefix = FALSE) {
179 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'membership_payment', $prefix, []);
180 return $r;
181 }
182
183 /**
184 * Returns the list of fields that can be exported
185 *
186 * @param bool $prefix
187 *
188 * @return array
189 */
190 public static function &export($prefix = FALSE) {
191 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'membership_payment', $prefix, []);
192 return $r;
193 }
194
195 /**
196 * Returns the list of indices
197 *
198 * @param bool $localize
199 *
200 * @return array
201 */
202 public static function indices($localize = TRUE) {
203 $indices = [
204 'UI_contribution_membership' => [
205 'name' => 'UI_contribution_membership',
206 'field' => [
207 0 => 'contribution_id',
208 1 => 'membership_id',
209 ],
210 'localizable' => FALSE,
211 'unique' => TRUE,
212 'sig' => 'civicrm_membership_payment::1::contribution_id::membership_id',
213 ],
214 ];
215 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
216 }
217
218 }