Merge pull request #14326 from civicrm/5.14
[civicrm-core.git] / CRM / Event / Cart / DAO / EventInCart.php
1 <?php
2
3 /**
4 * @package CRM
5 * @copyright CiviCRM LLC (c) 2004-2019
6 *
7 * Generated from xml/schema/CRM/Event/Cart/EventInCart.xml
8 * DO NOT EDIT. Generated by CRM_Core_CodeGen
9 * (GenCodeChecksum:b9da5d3acb0b71b79cc3f8d2f7e5ec50)
10 */
11
12 /**
13 * Database access object for the EventInCart entity.
14 */
15 class CRM_Event_Cart_DAO_EventInCart extends CRM_Core_DAO {
16
17 /**
18 * Static instance to hold the table name.
19 *
20 * @var string
21 */
22 public static $_tableName = 'civicrm_events_in_carts';
23
24 /**
25 * Should CiviCRM log any modifications to this table in the civicrm_log table.
26 *
27 * @var bool
28 */
29 public static $_log = FALSE;
30
31 /**
32 * Event In Cart Id
33 *
34 * @var int
35 */
36 public $id;
37
38 /**
39 * FK to Event ID
40 *
41 * @var int
42 */
43 public $event_id;
44
45 /**
46 * FK to Event Cart ID
47 *
48 * @var int
49 */
50 public $event_cart_id;
51
52 /**
53 * Class constructor.
54 */
55 public function __construct() {
56 $this->__table = 'civicrm_events_in_carts';
57 parent::__construct();
58 }
59
60 /**
61 * Returns foreign keys and entity references.
62 *
63 * @return array
64 * [CRM_Core_Reference_Interface]
65 */
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(), 'event_id', 'civicrm_event', 'id');
70 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'event_cart_id', 'civicrm_event_carts', 'id');
71 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
72 }
73 return Civi::$statics[__CLASS__]['links'];
74 }
75
76 /**
77 * Returns all the column names of this table
78 *
79 * @return array
80 */
81 public static function &fields() {
82 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
83 Civi::$statics[__CLASS__]['fields'] = [
84 'event_in_cart_id' => [
85 'name' => 'id',
86 'type' => CRM_Utils_Type::T_INT,
87 'title' => ts('Event In Cart'),
88 'description' => ts('Event In Cart Id'),
89 'required' => TRUE,
90 'where' => 'civicrm_events_in_carts.id',
91 'table_name' => 'civicrm_events_in_carts',
92 'entity' => 'EventInCart',
93 'bao' => 'CRM_Event_Cart_BAO_EventInCart',
94 'localizable' => 0,
95 ],
96 'event_id' => [
97 'name' => 'event_id',
98 'type' => CRM_Utils_Type::T_INT,
99 'title' => ts('Event'),
100 'description' => ts('FK to Event ID'),
101 'where' => 'civicrm_events_in_carts.event_id',
102 'table_name' => 'civicrm_events_in_carts',
103 'entity' => 'EventInCart',
104 'bao' => 'CRM_Event_Cart_BAO_EventInCart',
105 'localizable' => 0,
106 'FKClassName' => 'CRM_Event_DAO_Event',
107 ],
108 'event_cart_id' => [
109 'name' => 'event_cart_id',
110 'type' => CRM_Utils_Type::T_INT,
111 'title' => ts('Event In Cart'),
112 'description' => ts('FK to Event Cart ID'),
113 'where' => 'civicrm_events_in_carts.event_cart_id',
114 'table_name' => 'civicrm_events_in_carts',
115 'entity' => 'EventInCart',
116 'bao' => 'CRM_Event_Cart_BAO_EventInCart',
117 'localizable' => 0,
118 'FKClassName' => 'CRM_Event_Cart_DAO_Cart',
119 ],
120 ];
121 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
122 }
123 return Civi::$statics[__CLASS__]['fields'];
124 }
125
126 /**
127 * Return a mapping from field-name to the corresponding key (as used in fields()).
128 *
129 * @return array
130 * Array(string $name => string $uniqueName).
131 */
132 public static function &fieldKeys() {
133 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
134 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
135 }
136 return Civi::$statics[__CLASS__]['fieldKeys'];
137 }
138
139 /**
140 * Returns the names of this table
141 *
142 * @return string
143 */
144 public static function getTableName() {
145 return self::$_tableName;
146 }
147
148 /**
149 * Returns if this table needs to be logged
150 *
151 * @return bool
152 */
153 public function getLog() {
154 return self::$_log;
155 }
156
157 /**
158 * Returns the list of fields that can be imported
159 *
160 * @param bool $prefix
161 *
162 * @return array
163 */
164 public static function &import($prefix = FALSE) {
165 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'events_in_carts', $prefix, []);
166 return $r;
167 }
168
169 /**
170 * Returns the list of fields that can be exported
171 *
172 * @param bool $prefix
173 *
174 * @return array
175 */
176 public static function &export($prefix = FALSE) {
177 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'events_in_carts', $prefix, []);
178 return $r;
179 }
180
181 /**
182 * Returns the list of indices
183 *
184 * @param bool $localize
185 *
186 * @return array
187 */
188 public static function indices($localize = TRUE) {
189 $indices = [];
190 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
191 }
192
193 }