Merge commit 'fd6277c70f95fac'
[civicrm-core.git] / CRM / Mailing / Event / DAO / Reply.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/Reply.xml
32 * DO NOT EDIT. Generated by CRM_Core_CodeGen
6c2b97b7 33 * (GenCodeChecksum:c820f3b64d2152014b47a738c32f1f84)
e501603b
TO
34 */
35require_once 'CRM/Core/DAO.php';
36require_once 'CRM/Utils/Type.php';
f41f0342 37/**
38 * CRM_Mailing_Event_DAO_Reply constructor.
39 */
e501603b
TO
40class CRM_Mailing_Event_DAO_Reply 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_reply';
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 * When this reply event occurred.
66 *
6c2b97b7 67 * @var timestamp
e501603b
TO
68 */
69 public $time_stamp;
70 /**
f41f0342 71 * Class constructor.
e501603b
TO
72 */
73 function __construct() {
74 $this->__table = 'civicrm_mailing_event_reply';
75 parent::__construct();
76 }
77 /**
f41f0342 78 * Returns foreign keys and entity references.
e501603b
TO
79 *
80 * @return array
81 * [CRM_Core_Reference_Interface]
82 */
83 static function getReferenceColumns() {
346aaaba
TO
84 if (!isset(Civi::$statics[__CLASS__]['links'])) {
85 Civi::$statics[__CLASS__]['links'] = static ::createReferenceColumns(__CLASS__);
86 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName() , 'event_queue_id', 'civicrm_mailing_event_queue', 'id');
87 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
e501603b 88 }
346aaaba 89 return Civi::$statics[__CLASS__]['links'];
e501603b
TO
90 }
91 /**
92 * Returns all the column names of this table
93 *
94 * @return array
95 */
96 static function &fields() {
346aaaba
TO
97 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
98 Civi::$statics[__CLASS__]['fields'] = array(
e501603b
TO
99 'id' => array(
100 'name' => 'id',
101 'type' => CRM_Utils_Type::T_INT,
102 'title' => ts('Reply ID') ,
103 'required' => true,
522a26c9 104 'table_name' => 'civicrm_mailing_event_reply',
105 'entity' => 'Reply',
106 'bao' => 'CRM_Mailing_Event_BAO_Reply',
6a7e5e5d 107 'localizable' => 0,
e501603b
TO
108 ) ,
109 'event_queue_id' => array(
110 'name' => 'event_queue_id',
111 'type' => CRM_Utils_Type::T_INT,
112 'title' => ts('Event Queue') ,
113 'description' => 'FK to EventQueue',
114 'required' => true,
522a26c9 115 'table_name' => 'civicrm_mailing_event_reply',
116 'entity' => 'Reply',
117 'bao' => 'CRM_Mailing_Event_BAO_Reply',
6a7e5e5d 118 'localizable' => 0,
e501603b
TO
119 'FKClassName' => 'CRM_Mailing_Event_DAO_Queue',
120 ) ,
121 'time_stamp' => array(
122 'name' => 'time_stamp',
6c2b97b7 123 'type' => CRM_Utils_Type::T_TIMESTAMP,
e501603b
TO
124 'title' => ts('Reply Timestamp') ,
125 'description' => 'When this reply event occurred.',
126 'required' => true,
6c2b97b7 127 'default' => 'CURRENT_TIMESTAMP',
522a26c9 128 'table_name' => 'civicrm_mailing_event_reply',
129 'entity' => 'Reply',
130 'bao' => 'CRM_Mailing_Event_BAO_Reply',
6a7e5e5d 131 'localizable' => 0,
e501603b
TO
132 ) ,
133 );
346aaaba 134 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
e501603b 135 }
346aaaba 136 return Civi::$statics[__CLASS__]['fields'];
e501603b
TO
137 }
138 /**
bd8e0b14 139 * Return a mapping from field-name to the corresponding key (as used in fields()).
e501603b
TO
140 *
141 * @return array
bd8e0b14 142 * Array(string $name => string $uniqueName).
e501603b
TO
143 */
144 static function &fieldKeys() {
bd8e0b14
TO
145 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
146 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
e501603b 147 }
bd8e0b14 148 return Civi::$statics[__CLASS__]['fieldKeys'];
e501603b
TO
149 }
150 /**
151 * Returns the names of this table
152 *
153 * @return string
154 */
155 static function getTableName() {
156 return self::$_tableName;
157 }
158 /**
159 * Returns if this table needs to be logged
160 *
161 * @return boolean
162 */
163 function getLog() {
164 return self::$_log;
165 }
166 /**
167 * Returns the list of fields that can be imported
168 *
169 * @param bool $prefix
170 *
171 * @return array
172 */
173 static function &import($prefix = false) {
60808919
TO
174 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'mailing_event_reply', $prefix, array());
175 return $r;
e501603b
TO
176 }
177 /**
178 * Returns the list of fields that can be exported
179 *
180 * @param bool $prefix
181 *
182 * @return array
183 */
184 static function &export($prefix = false) {
60808919
TO
185 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'mailing_event_reply', $prefix, array());
186 return $r;
e501603b 187 }
e7a6b91a
AS
188 /**
189 * Returns the list of indices
190 */
191 public static function indices($localize = TRUE) {
192 $indices = array();
193 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
194 }
e501603b 195}