fixup CRM-14885 - Import DAOs
[civicrm-core.git] / CRM / Mailing / Event / DAO / Delivered.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/Mailing/Event/Delivered.xml
32 * DO NOT EDIT. Generated by CRM_Core_CodeGen
437fafcf 33 * (GenCodeChecksum:6a51b03a333ce5ccbd3533cb4f6bf8b9)
e501603b
TO
34 */
35require_once 'CRM/Core/DAO.php';
36require_once 'CRM/Utils/Type.php';
37class CRM_Mailing_Event_DAO_Delivered extends CRM_Core_DAO {
38 /**
39 * static instance to hold the table name
40 *
41 * @var string
42 */
43 static $_tableName = 'civicrm_mailing_event_delivered';
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 *
85 * @var int unsigned
86 */
87 public $id;
88 /**
89 * FK to EventQueue
90 *
91 * @var int unsigned
92 */
93 public $event_queue_id;
94 /**
95 * When this delivery event occurred.
96 *
97 * @var datetime
98 */
99 public $time_stamp;
100 /**
101 * class constructor
102 *
103 * @return civicrm_mailing_event_delivered
104 */
105 function __construct() {
106 $this->__table = 'civicrm_mailing_event_delivered';
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() , 'event_queue_id', 'civicrm_mailing_event_queue', '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 'id' => array(
131 'name' => 'id',
132 'type' => CRM_Utils_Type::T_INT,
133 'title' => ts('Delivered ID') ,
134 'required' => true,
135 ) ,
136 'event_queue_id' => array(
137 'name' => 'event_queue_id',
138 'type' => CRM_Utils_Type::T_INT,
139 'title' => ts('Event Queue') ,
140 'description' => 'FK to EventQueue',
141 'required' => true,
142 'FKClassName' => 'CRM_Mailing_Event_DAO_Queue',
143 ) ,
144 'time_stamp' => array(
145 'name' => 'time_stamp',
146 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
147 'title' => ts('Timestamp') ,
148 'description' => 'When this delivery event occurred.',
149 'required' => true,
150 ) ,
151 );
152 }
153 return self::$_fields;
154 }
155 /**
156 * Returns an array containing, for each field, the arary key used for that
157 * field in self::$_fields.
158 *
159 * @return array
160 */
161 static function &fieldKeys() {
162 if (!(self::$_fieldKeys)) {
163 self::$_fieldKeys = array(
164 'id' => 'id',
165 'event_queue_id' => 'event_queue_id',
166 'time_stamp' => 'time_stamp',
167 );
168 }
169 return self::$_fieldKeys;
170 }
171 /**
172 * Returns the names of this table
173 *
174 * @return string
175 */
176 static function getTableName() {
177 return self::$_tableName;
178 }
179 /**
180 * Returns if this table needs to be logged
181 *
182 * @return boolean
183 */
184 function getLog() {
185 return self::$_log;
186 }
187 /**
188 * Returns the list of fields that can be imported
189 *
190 * @param bool $prefix
191 *
192 * @return array
193 */
194 static function &import($prefix = false) {
195 if (!(self::$_import)) {
196 self::$_import = array();
197 $fields = self::fields();
198 foreach($fields as $name => $field) {
199 if (CRM_Utils_Array::value('import', $field)) {
200 if ($prefix) {
201 self::$_import['mailing_event_delivered'] = & $fields[$name];
202 } else {
203 self::$_import[$name] = & $fields[$name];
204 }
205 }
206 }
207 }
208 return self::$_import;
209 }
210 /**
211 * Returns the list of fields that can be exported
212 *
213 * @param bool $prefix
214 *
215 * @return array
216 */
217 static function &export($prefix = false) {
218 if (!(self::$_export)) {
219 self::$_export = array();
220 $fields = self::fields();
221 foreach($fields as $name => $field) {
222 if (CRM_Utils_Array::value('export', $field)) {
223 if ($prefix) {
224 self::$_export['mailing_event_delivered'] = & $fields[$name];
225 } else {
226 self::$_export[$name] = & $fields[$name];
227 }
228 }
229 }
230 }
231 return self::$_export;
232 }
233}