5 * @copyright CiviCRM LLC (c) 2004-2018
7 * Generated from xml/schema/CRM/Event/ParticipantPayment.xml
8 * DO NOT EDIT. Generated by CRM_Core_CodeGen
9 * (GenCodeChecksum:293a5e4f208de9a01639960975850cd4)
13 * Database access object for the ParticipantPayment entity.
15 class CRM_Event_DAO_ParticipantPayment
extends CRM_Core_DAO
{
18 * Static instance to hold the table name.
22 static $_tableName = 'civicrm_participant_payment';
25 * Should CiviCRM log any modifications to this table in the civicrm_log table.
32 * Participant Payment Id
43 public $participant_id;
46 * FK to contribution table.
50 public $contribution_id;
55 public function __construct() {
56 $this->__table
= 'civicrm_participant_payment';
57 parent
::__construct();
61 * Returns foreign keys and entity references.
64 * [CRM_Core_Reference_Interface]
66 public static function getReferenceColumns() {
67 if (!isset(Civi
::$statics[__CLASS__
]['links'])) {
68 Civi
::$statics[__CLASS__
]['links'] = static ::createReferenceColumns(__CLASS__
);
69 Civi
::$statics[__CLASS__
]['links'][] = new CRM_Core_Reference_Basic(self
::getTableName(), 'participant_id', 'civicrm_participant', 'id');
70 Civi
::$statics[__CLASS__
]['links'][] = new CRM_Core_Reference_Basic(self
::getTableName(), 'contribution_id', 'civicrm_contribution', 'id');
71 CRM_Core_DAO_AllCoreTables
::invoke(__CLASS__
, 'links_callback', Civi
::$statics[__CLASS__
]['links']);
73 return Civi
::$statics[__CLASS__
]['links'];
77 * Returns all the column names of this table
81 public static function &fields() {
82 if (!isset(Civi
::$statics[__CLASS__
]['fields'])) {
83 Civi
::$statics[__CLASS__
]['fields'] = [
86 'type' => CRM_Utils_Type
::T_INT
,
87 'title' => ts('Payment ID'),
88 'description' => 'Participant Payment Id',
90 'table_name' => 'civicrm_participant_payment',
91 'entity' => 'ParticipantPayment',
92 'bao' => 'CRM_Event_BAO_ParticipantPayment',
96 'name' => 'participant_id',
97 'type' => CRM_Utils_Type
::T_INT
,
98 'title' => ts('Participant ID'),
99 'description' => 'Participant Id (FK)',
101 'table_name' => 'civicrm_participant_payment',
102 'entity' => 'ParticipantPayment',
103 'bao' => 'CRM_Event_BAO_ParticipantPayment',
105 'FKClassName' => 'CRM_Event_DAO_Participant',
107 'contribution_id' => [
108 'name' => 'contribution_id',
109 'type' => CRM_Utils_Type
::T_INT
,
110 'title' => ts('Contribution'),
111 'description' => 'FK to contribution table.',
113 'table_name' => 'civicrm_participant_payment',
114 'entity' => 'ParticipantPayment',
115 'bao' => 'CRM_Event_BAO_ParticipantPayment',
117 'FKClassName' => 'CRM_Contribute_DAO_Contribution',
120 CRM_Core_DAO_AllCoreTables
::invoke(__CLASS__
, 'fields_callback', Civi
::$statics[__CLASS__
]['fields']);
122 return Civi
::$statics[__CLASS__
]['fields'];
126 * Return a mapping from field-name to the corresponding key (as used in fields()).
129 * Array(string $name => string $uniqueName).
131 public static function &fieldKeys() {
132 if (!isset(Civi
::$statics[__CLASS__
]['fieldKeys'])) {
133 Civi
::$statics[__CLASS__
]['fieldKeys'] = array_flip(CRM_Utils_Array
::collect('name', self
::fields()));
135 return Civi
::$statics[__CLASS__
]['fieldKeys'];
139 * Returns the names of this table
143 public static function getTableName() {
144 return self
::$_tableName;
148 * Returns if this table needs to be logged
152 public function getLog() {
157 * Returns the list of fields that can be imported
159 * @param bool $prefix
163 public static function &import($prefix = FALSE) {
164 $r = CRM_Core_DAO_AllCoreTables
::getImports(__CLASS__
, 'participant_payment', $prefix, []);
169 * Returns the list of fields that can be exported
171 * @param bool $prefix
175 public static function &export($prefix = FALSE) {
176 $r = CRM_Core_DAO_AllCoreTables
::getExports(__CLASS__
, 'participant_payment', $prefix, []);
181 * Returns the list of indices
183 * @param bool $localize
187 public static function indices($localize = TRUE) {
189 'UI_contribution_participant' => [
190 'name' => 'UI_contribution_participant',
192 0 => 'contribution_id',
193 1 => 'participant_id',
195 'localizable' => FALSE,
197 'sig' => 'civicrm_participant_payment::1::contribution_id::participant_id',
200 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables
::multilingualize(__CLASS__
, $indices) : $indices;