xml/templates/dao.tpl - Centralize export() / import() logic
[civicrm-core.git] / CRM / Event / Cart / DAO / Cart.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/Event/Cart/Cart.xml
32 * DO NOT EDIT. Generated by CRM_Core_CodeGen
437fafcf 33 * (GenCodeChecksum:8570af177a3699d8c171da3fc47baead)
e501603b
TO
34 */
35require_once 'CRM/Core/DAO.php';
36require_once 'CRM/Utils/Type.php';
37class CRM_Event_Cart_DAO_Cart extends CRM_Core_DAO {
38 /**
39 * static instance to hold the table name
40 *
41 * @var string
42 */
43 static $_tableName = 'civicrm_event_carts';
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 = false;
83 /**
84 * Cart Id
85 *
86 * @var int unsigned
87 */
88 public $id;
89 /**
90 * FK to civicrm_contact who created this cart
91 *
92 * @var int unsigned
93 */
94 public $user_id;
95 /**
96 *
97 * @var boolean
98 */
99 public $completed;
100 /**
101 * class constructor
102 *
103 * @return civicrm_event_carts
104 */
105 function __construct() {
106 $this->__table = 'civicrm_event_carts';
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() , 'user_id', 'civicrm_contact', 'id');
119 }
120 return self::$_links;
121 }
122 /**
123 * Returns all the column names of this table
124 *
125 * @return array
126 */
127 static function &fields() {
128 if (!(self::$_fields)) {
129 self::$_fields = array(
130 'cart_id' => array(
131 'name' => 'id',
132 'type' => CRM_Utils_Type::T_INT,
133 'title' => ts('Cart ID') ,
134 'description' => 'Cart Id',
135 'required' => true,
136 ) ,
137 'user_id' => array(
138 'name' => 'user_id',
139 'type' => CRM_Utils_Type::T_INT,
140 'title' => ts('Created By') ,
141 'description' => 'FK to civicrm_contact who created this cart',
142 'FKClassName' => 'CRM_Contact_DAO_Contact',
143 ) ,
144 'completed' => array(
145 'name' => 'completed',
146 'type' => CRM_Utils_Type::T_BOOLEAN,
147 'title' => ts('Complete?') ,
148 ) ,
149 );
150 }
151 return self::$_fields;
152 }
153 /**
154 * Returns an array containing, for each field, the arary key used for that
155 * field in self::$_fields.
156 *
157 * @return array
158 */
159 static function &fieldKeys() {
160 if (!(self::$_fieldKeys)) {
161 self::$_fieldKeys = array(
162 'id' => 'cart_id',
163 'user_id' => 'user_id',
164 'completed' => 'completed',
165 );
166 }
167 return self::$_fieldKeys;
168 }
169 /**
170 * Returns the names of this table
171 *
172 * @return string
173 */
174 static function getTableName() {
175 return self::$_tableName;
176 }
177 /**
178 * Returns if this table needs to be logged
179 *
180 * @return boolean
181 */
182 function getLog() {
183 return self::$_log;
184 }
185 /**
186 * Returns the list of fields that can be imported
187 *
188 * @param bool $prefix
189 *
190 * @return array
191 */
192 static function &import($prefix = false) {
193 if (!(self::$_import)) {
194 self::$_import = array();
195 $fields = self::fields();
196 foreach($fields as $name => $field) {
197 if (CRM_Utils_Array::value('import', $field)) {
198 if ($prefix) {
199 self::$_import['event_carts'] = & $fields[$name];
200 } else {
201 self::$_import[$name] = & $fields[$name];
202 }
203 }
204 }
205 }
206 return self::$_import;
207 }
208 /**
209 * Returns the list of fields that can be exported
210 *
211 * @param bool $prefix
212 *
213 * @return array
214 */
215 static function &export($prefix = false) {
216 if (!(self::$_export)) {
217 self::$_export = array();
218 $fields = self::fields();
219 foreach($fields as $name => $field) {
220 if (CRM_Utils_Array::value('export', $field)) {
221 if ($prefix) {
222 self::$_export['event_carts'] = & $fields[$name];
223 } else {
224 self::$_export[$name] = & $fields[$name];
225 }
226 }
227 }
228 }
229 return self::$_export;
230 }
231}