fixup CRM-14885 - Import DAOs
[civicrm-core.git] / CRM / Mailing / Event / DAO / Unsubscribe.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/Unsubscribe.xml
32 * DO NOT EDIT. Generated by CRM_Core_CodeGen
437fafcf 33 * (GenCodeChecksum:6494a1c74d3259aaec6b09e69b4c42ae)
e501603b
TO
34 */
35require_once 'CRM/Core/DAO.php';
36require_once 'CRM/Utils/Type.php';
37class CRM_Mailing_Event_DAO_Unsubscribe extends CRM_Core_DAO {
38 /**
39 * static instance to hold the table name
40 *
41 * @var string
42 */
43 static $_tableName = 'civicrm_mailing_event_unsubscribe';
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 * Unsubscribe at org- or group-level
96 *
97 * @var boolean
98 */
99 public $org_unsubscribe;
100 /**
101 * When this delivery event occurred.
102 *
103 * @var datetime
104 */
105 public $time_stamp;
106 /**
107 * class constructor
108 *
109 * @return civicrm_mailing_event_unsubscribe
110 */
111 function __construct() {
112 $this->__table = 'civicrm_mailing_event_unsubscribe';
113 parent::__construct();
114 }
115 /**
116 * Returns foreign keys and entity references
117 *
118 * @return array
119 * [CRM_Core_Reference_Interface]
120 */
121 static function getReferenceColumns() {
122 if (!self::$_links) {
123 self::$_links = static ::createReferenceColumns(__CLASS__);
124 self::$_links[] = new CRM_Core_Reference_Basic(self::getTableName() , 'event_queue_id', 'civicrm_mailing_event_queue', 'id');
125 }
126 return self::$_links;
127 }
128 /**
129 * Returns all the column names of this table
130 *
131 * @return array
132 */
133 static function &fields() {
134 if (!(self::$_fields)) {
135 self::$_fields = array(
136 'id' => array(
137 'name' => 'id',
138 'type' => CRM_Utils_Type::T_INT,
139 'title' => ts('Unsubscribe ID') ,
140 'required' => true,
141 ) ,
142 'event_queue_id' => array(
143 'name' => 'event_queue_id',
144 'type' => CRM_Utils_Type::T_INT,
145 'title' => ts('Mailing Event Queue') ,
146 'description' => 'FK to EventQueue',
147 'required' => true,
148 'FKClassName' => 'CRM_Mailing_Event_DAO_Queue',
149 ) ,
150 'org_unsubscribe' => array(
151 'name' => 'org_unsubscribe',
152 'type' => CRM_Utils_Type::T_BOOLEAN,
153 'title' => ts('Unsubscribe is for Organization?') ,
154 'description' => 'Unsubscribe at org- or group-level',
155 'required' => true,
156 ) ,
157 'time_stamp' => array(
158 'name' => 'time_stamp',
159 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
160 'title' => ts('Unsubscribe Timestamp') ,
161 'description' => 'When this delivery event occurred.',
162 'required' => true,
163 ) ,
164 );
165 }
166 return self::$_fields;
167 }
168 /**
169 * Returns an array containing, for each field, the arary key used for that
170 * field in self::$_fields.
171 *
172 * @return array
173 */
174 static function &fieldKeys() {
175 if (!(self::$_fieldKeys)) {
176 self::$_fieldKeys = array(
177 'id' => 'id',
178 'event_queue_id' => 'event_queue_id',
179 'org_unsubscribe' => 'org_unsubscribe',
180 'time_stamp' => 'time_stamp',
181 );
182 }
183 return self::$_fieldKeys;
184 }
185 /**
186 * Returns the names of this table
187 *
188 * @return string
189 */
190 static function getTableName() {
191 return self::$_tableName;
192 }
193 /**
194 * Returns if this table needs to be logged
195 *
196 * @return boolean
197 */
198 function getLog() {
199 return self::$_log;
200 }
201 /**
202 * Returns the list of fields that can be imported
203 *
204 * @param bool $prefix
205 *
206 * @return array
207 */
208 static function &import($prefix = false) {
209 if (!(self::$_import)) {
210 self::$_import = array();
211 $fields = self::fields();
212 foreach($fields as $name => $field) {
213 if (CRM_Utils_Array::value('import', $field)) {
214 if ($prefix) {
215 self::$_import['mailing_event_unsubscribe'] = & $fields[$name];
216 } else {
217 self::$_import[$name] = & $fields[$name];
218 }
219 }
220 }
221 }
222 return self::$_import;
223 }
224 /**
225 * Returns the list of fields that can be exported
226 *
227 * @param bool $prefix
228 *
229 * @return array
230 */
231 static function &export($prefix = false) {
232 if (!(self::$_export)) {
233 self::$_export = array();
234 $fields = self::fields();
235 foreach($fields as $name => $field) {
236 if (CRM_Utils_Array::value('export', $field)) {
237 if ($prefix) {
238 self::$_export['mailing_event_unsubscribe'] = & $fields[$name];
239 } else {
240 self::$_export[$name] = & $fields[$name];
241 }
242 }
243 }
244 }
245 return self::$_export;
246 }
247}