Merge pull request #10080 from agileware/CRM-20360
[civicrm-core.git] / CRM / Mailing / Event / DAO / TrackableURLOpen.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/TrackableURLOpen.xml
32 * DO NOT EDIT. Generated by CRM_Core_CodeGen
022785d8 33 * (GenCodeChecksum:4deaa2fd1534e9f0493f6059eaa74a23)
e501603b
TO
34 */
35require_once 'CRM/Core/DAO.php';
36require_once 'CRM/Utils/Type.php';
f41f0342 37/**
38 * CRM_Mailing_Event_DAO_TrackableURLOpen constructor.
39 */
e501603b
TO
40class CRM_Mailing_Event_DAO_TrackableURLOpen 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_trackable_url_open';
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 TrackableURL
66 *
67 * @var int unsigned
68 */
69 public $trackable_url_id;
70 /**
71 * When this trackable URL open 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_trackable_url_open';
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() , 'trackable_url_id', 'civicrm_mailing_trackable_url', '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('Trackable URL Open ID') ,
110 'required' => true,
522a26c9 111 'table_name' => 'civicrm_mailing_event_trackable_url_open',
112 'entity' => 'TrackableURLOpen',
113 'bao' => 'CRM_Mailing_Event_BAO_TrackableURLOpen',
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('Event Queue') ,
120 'description' => 'FK to EventQueue',
121 'required' => true,
522a26c9 122 'table_name' => 'civicrm_mailing_event_trackable_url_open',
123 'entity' => 'TrackableURLOpen',
124 'bao' => 'CRM_Mailing_Event_BAO_TrackableURLOpen',
6a7e5e5d 125 'localizable' => 0,
e501603b
TO
126 'FKClassName' => 'CRM_Mailing_Event_DAO_Queue',
127 ) ,
128 'trackable_url_id' => array(
129 'name' => 'trackable_url_id',
130 'type' => CRM_Utils_Type::T_INT,
131 'title' => ts('Trackable Url') ,
132 'description' => 'FK to TrackableURL',
133 'required' => true,
522a26c9 134 'table_name' => 'civicrm_mailing_event_trackable_url_open',
135 'entity' => 'TrackableURLOpen',
136 'bao' => 'CRM_Mailing_Event_BAO_TrackableURLOpen',
6a7e5e5d 137 'localizable' => 0,
e501603b
TO
138 'FKClassName' => 'CRM_Mailing_DAO_TrackableURL',
139 ) ,
140 'time_stamp' => array(
141 'name' => 'time_stamp',
142 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
143 'title' => ts('Timestamp') ,
144 'description' => 'When this trackable URL open occurred.',
145 'required' => true,
522a26c9 146 'table_name' => 'civicrm_mailing_event_trackable_url_open',
147 'entity' => 'TrackableURLOpen',
148 'bao' => 'CRM_Mailing_Event_BAO_TrackableURLOpen',
6a7e5e5d 149 'localizable' => 0,
e501603b
TO
150 ) ,
151 );
346aaaba 152 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
e501603b 153 }
346aaaba 154 return Civi::$statics[__CLASS__]['fields'];
e501603b
TO
155 }
156 /**
bd8e0b14 157 * Return a mapping from field-name to the corresponding key (as used in fields()).
e501603b
TO
158 *
159 * @return array
bd8e0b14 160 * Array(string $name => string $uniqueName).
e501603b
TO
161 */
162 static function &fieldKeys() {
bd8e0b14
TO
163 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
164 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
e501603b 165 }
bd8e0b14 166 return Civi::$statics[__CLASS__]['fieldKeys'];
e501603b
TO
167 }
168 /**
169 * Returns the names of this table
170 *
171 * @return string
172 */
173 static function getTableName() {
174 return self::$_tableName;
175 }
176 /**
177 * Returns if this table needs to be logged
178 *
179 * @return boolean
180 */
181 function getLog() {
182 return self::$_log;
183 }
184 /**
185 * Returns the list of fields that can be imported
186 *
187 * @param bool $prefix
188 *
189 * @return array
190 */
191 static function &import($prefix = false) {
60808919
TO
192 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'mailing_event_trackable_url_open', $prefix, array());
193 return $r;
e501603b
TO
194 }
195 /**
196 * Returns the list of fields that can be exported
197 *
198 * @param bool $prefix
199 *
200 * @return array
201 */
202 static function &export($prefix = false) {
60808919
TO
203 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'mailing_event_trackable_url_open', $prefix, array());
204 return $r;
e501603b 205 }
e7a6b91a
AS
206 /**
207 * Returns the list of indices
208 */
209 public static function indices($localize = TRUE) {
210 $indices = array();
211 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
212 }
e501603b 213}