CRM-9683 implement timezone support for CiviMail
[civicrm-core.git] / CRM / Mailing / Event / DAO / Forward.php
CommitLineData
e501603b
TO
1<?php
2/*
3+--------------------------------------------------------------------+
4| CiviCRM version 4.7 |
5+--------------------------------------------------------------------+
0f03f337 6| Copyright CiviCRM LLC (c) 2004-2017 |
e501603b
TO
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
0f03f337 29 * @copyright CiviCRM LLC (c) 2004-2017
e501603b
TO
30 *
31 * Generated from xml/schema/CRM/Mailing/Event/Forward.xml
32 * DO NOT EDIT. Generated by CRM_Core_CodeGen
022785d8 33 * (GenCodeChecksum:5b9039dd2973b4a8b776e20c9afd519a)
e501603b
TO
34 */
35require_once 'CRM/Core/DAO.php';
36require_once 'CRM/Utils/Type.php';
f41f0342 37/**
38 * CRM_Mailing_Event_DAO_Forward constructor.
39 */
e501603b
TO
40class CRM_Mailing_Event_DAO_Forward extends CRM_Core_DAO {
41 /**
f41f0342 42 * Static instance to hold the table name.
e501603b
TO
43 *
44 * @var string
45 */
46 static $_tableName = 'civicrm_mailing_event_forward';
e501603b 47 /**
f41f0342 48 * Should CiviCRM log any modifications to this table in the civicrm_log table.
e501603b
TO
49 *
50 * @var boolean
51 */
52 static $_log = false;
53 /**
54 *
55 * @var int unsigned
56 */
57 public $id;
58 /**
59 * FK to EventQueue
60 *
61 * @var int unsigned
62 */
63 public $event_queue_id;
64 /**
65 * FK to EventQueue for destination
66 *
67 * @var int unsigned
68 */
69 public $dest_queue_id;
70 /**
71 * When this forward event occurred.
72 *
73 * @var datetime
74 */
75 public $time_stamp;
76 /**
f41f0342 77 * Class constructor.
e501603b
TO
78 */
79 function __construct() {
80 $this->__table = 'civicrm_mailing_event_forward';
81 parent::__construct();
82 }
83 /**
f41f0342 84 * Returns foreign keys and entity references.
e501603b
TO
85 *
86 * @return array
87 * [CRM_Core_Reference_Interface]
88 */
89 static function getReferenceColumns() {
346aaaba
TO
90 if (!isset(Civi::$statics[__CLASS__]['links'])) {
91 Civi::$statics[__CLASS__]['links'] = static ::createReferenceColumns(__CLASS__);
92 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName() , 'event_queue_id', 'civicrm_mailing_event_queue', 'id');
93 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName() , 'dest_queue_id', 'civicrm_mailing_event_queue', 'id');
94 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
e501603b 95 }
346aaaba 96 return Civi::$statics[__CLASS__]['links'];
e501603b
TO
97 }
98 /**
99 * Returns all the column names of this table
100 *
101 * @return array
102 */
103 static function &fields() {
346aaaba
TO
104 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
105 Civi::$statics[__CLASS__]['fields'] = array(
e501603b
TO
106 'id' => array(
107 'name' => 'id',
108 'type' => CRM_Utils_Type::T_INT,
109 'title' => ts('Forward ID') ,
110 'required' => true,
522a26c9 111 'table_name' => 'civicrm_mailing_event_forward',
112 'entity' => 'Forward',
113 'bao' => 'CRM_Mailing_Event_BAO_Forward',
6a7e5e5d 114 'localizable' => 0,
e501603b
TO
115 ) ,
116 'event_queue_id' => array(
117 'name' => 'event_queue_id',
118 'type' => CRM_Utils_Type::T_INT,
119 'title' => ts('Mailing Event Queue') ,
120 'description' => 'FK to EventQueue',
121 'required' => true,
522a26c9 122 'table_name' => 'civicrm_mailing_event_forward',
123 'entity' => 'Forward',
124 'bao' => 'CRM_Mailing_Event_BAO_Forward',
6a7e5e5d 125 'localizable' => 0,
e501603b
TO
126 'FKClassName' => 'CRM_Mailing_Event_DAO_Queue',
127 ) ,
128 'dest_queue_id' => array(
129 'name' => 'dest_queue_id',
130 'type' => CRM_Utils_Type::T_INT,
131 'title' => ts('Destination Queue') ,
132 'description' => 'FK to EventQueue for destination',
522a26c9 133 'table_name' => 'civicrm_mailing_event_forward',
134 'entity' => 'Forward',
135 'bao' => 'CRM_Mailing_Event_BAO_Forward',
6a7e5e5d 136 'localizable' => 0,
e501603b
TO
137 'FKClassName' => 'CRM_Mailing_Event_DAO_Queue',
138 ) ,
139 'time_stamp' => array(
140 'name' => 'time_stamp',
141 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
142 'title' => ts('Timestamp') ,
143 'description' => 'When this forward event occurred.',
144 'required' => true,
522a26c9 145 'table_name' => 'civicrm_mailing_event_forward',
146 'entity' => 'Forward',
147 'bao' => 'CRM_Mailing_Event_BAO_Forward',
6a7e5e5d 148 'localizable' => 0,
e501603b
TO
149 ) ,
150 );
346aaaba 151 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
e501603b 152 }
346aaaba 153 return Civi::$statics[__CLASS__]['fields'];
e501603b
TO
154 }
155 /**
bd8e0b14 156 * Return a mapping from field-name to the corresponding key (as used in fields()).
e501603b
TO
157 *
158 * @return array
bd8e0b14 159 * Array(string $name => string $uniqueName).
e501603b
TO
160 */
161 static function &fieldKeys() {
bd8e0b14
TO
162 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
163 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
e501603b 164 }
bd8e0b14 165 return Civi::$statics[__CLASS__]['fieldKeys'];
e501603b
TO
166 }
167 /**
168 * Returns the names of this table
169 *
170 * @return string
171 */
172 static function getTableName() {
173 return self::$_tableName;
174 }
175 /**
176 * Returns if this table needs to be logged
177 *
178 * @return boolean
179 */
180 function getLog() {
181 return self::$_log;
182 }
183 /**
184 * Returns the list of fields that can be imported
185 *
186 * @param bool $prefix
187 *
188 * @return array
189 */
190 static function &import($prefix = false) {
60808919
TO
191 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'mailing_event_forward', $prefix, array());
192 return $r;
e501603b
TO
193 }
194 /**
195 * Returns the list of fields that can be exported
196 *
197 * @param bool $prefix
198 *
199 * @return array
200 */
201 static function &export($prefix = false) {
60808919
TO
202 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'mailing_event_forward', $prefix, array());
203 return $r;
e501603b 204 }
e7a6b91a
AS
205 /**
206 * Returns the list of indices
207 */
208 public static function indices($localize = TRUE) {
209 $indices = array();
210 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
211 }
e501603b 212}