Merge pull request #9651 from fuzionnz/CRM-19844-hook_only_when_success
[civicrm-core.git] / CRM / Member / DAO / MembershipPayment.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/Member/MembershipPayment.xml
32 * DO NOT EDIT. Generated by CRM_Core_CodeGen
437fafcf 33 * (GenCodeChecksum:78253d51d8f0904aabc8a4f259c09704)
e501603b
TO
34 */
35require_once 'CRM/Core/DAO.php';
36require_once 'CRM/Utils/Type.php';
f41f0342 37/**
38 * CRM_Member_DAO_MembershipPayment constructor.
39 */
e501603b
TO
40class CRM_Member_DAO_MembershipPayment 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_membership_payment';
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 *
55 * @var int unsigned
56 */
57 public $id;
58 /**
59 * FK to Membership table
60 *
61 * @var int unsigned
62 */
63 public $membership_id;
64 /**
65 * FK to contribution table.
66 *
67 * @var int unsigned
68 */
69 public $contribution_id;
70 /**
f41f0342 71 * Class constructor.
e501603b
TO
72 */
73 function __construct() {
74 $this->__table = 'civicrm_membership_payment';
75 parent::__construct();
76 }
77 /**
f41f0342 78 * Returns foreign keys and entity references.
e501603b
TO
79 *
80 * @return array
81 * [CRM_Core_Reference_Interface]
82 */
83 static function getReferenceColumns() {
346aaaba
TO
84 if (!isset(Civi::$statics[__CLASS__]['links'])) {
85 Civi::$statics[__CLASS__]['links'] = static ::createReferenceColumns(__CLASS__);
86 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName() , 'membership_id', 'civicrm_membership', 'id');
87 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName() , 'contribution_id', 'civicrm_contribution', 'id');
88 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
e501603b 89 }
346aaaba 90 return Civi::$statics[__CLASS__]['links'];
e501603b
TO
91 }
92 /**
93 * Returns all the column names of this table
94 *
95 * @return array
96 */
97 static function &fields() {
346aaaba
TO
98 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
99 Civi::$statics[__CLASS__]['fields'] = array(
e501603b
TO
100 'id' => array(
101 'name' => 'id',
102 'type' => CRM_Utils_Type::T_INT,
103 'title' => ts('Membership Payment ID') ,
104 'required' => true,
105 ) ,
106 'membership_id' => array(
107 'name' => 'membership_id',
108 'type' => CRM_Utils_Type::T_INT,
109 'title' => ts('Membership') ,
110 'description' => 'FK to Membership table',
111 'required' => true,
112 'FKClassName' => 'CRM_Member_DAO_Membership',
113 ) ,
114 'contribution_id' => array(
115 'name' => 'contribution_id',
116 'type' => CRM_Utils_Type::T_INT,
117 'title' => ts('Contribution') ,
118 'description' => 'FK to contribution table.',
119 'FKClassName' => 'CRM_Contribute_DAO_Contribution',
120 ) ,
121 );
346aaaba 122 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
e501603b 123 }
346aaaba 124 return Civi::$statics[__CLASS__]['fields'];
e501603b
TO
125 }
126 /**
bd8e0b14 127 * Return a mapping from field-name to the corresponding key (as used in fields()).
e501603b
TO
128 *
129 * @return array
bd8e0b14 130 * Array(string $name => string $uniqueName).
e501603b
TO
131 */
132 static function &fieldKeys() {
bd8e0b14
TO
133 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
134 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
e501603b 135 }
bd8e0b14 136 return Civi::$statics[__CLASS__]['fieldKeys'];
e501603b
TO
137 }
138 /**
139 * Returns the names of this table
140 *
141 * @return string
142 */
143 static function getTableName() {
144 return self::$_tableName;
145 }
146 /**
147 * Returns if this table needs to be logged
148 *
149 * @return boolean
150 */
151 function getLog() {
152 return self::$_log;
153 }
154 /**
155 * Returns the list of fields that can be imported
156 *
157 * @param bool $prefix
158 *
159 * @return array
160 */
161 static function &import($prefix = false) {
60808919
TO
162 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'membership_payment', $prefix, array());
163 return $r;
e501603b
TO
164 }
165 /**
166 * Returns the list of fields that can be exported
167 *
168 * @param bool $prefix
169 *
170 * @return array
171 */
172 static function &export($prefix = false) {
60808919
TO
173 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'membership_payment', $prefix, array());
174 return $r;
e501603b
TO
175 }
176}