Regen DAOs with new fieldKeys()
[civicrm-core.git] / CRM / Mailing / Event / DAO / Forward.php
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/Forward.xml
32 * DO NOT EDIT. Generated by CRM_Core_CodeGen
33 * (GenCodeChecksum:922aee5401dd28090fba60a303710e1d)
34 */
35 require_once 'CRM/Core/DAO.php';
36 require_once 'CRM/Utils/Type.php';
37 class CRM_Mailing_Event_DAO_Forward extends CRM_Core_DAO {
38 /**
39 * static instance to hold the table name
40 *
41 * @var string
42 */
43 static $_tableName = 'civicrm_mailing_event_forward';
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 FK relationships
52 *
53 * @var string
54 */
55 static $_links = null;
56 /**
57 * static value to see if we should log any modifications to
58 * this table in the civicrm_log table
59 *
60 * @var boolean
61 */
62 static $_log = false;
63 /**
64 *
65 * @var int unsigned
66 */
67 public $id;
68 /**
69 * FK to EventQueue
70 *
71 * @var int unsigned
72 */
73 public $event_queue_id;
74 /**
75 * FK to EventQueue for destination
76 *
77 * @var int unsigned
78 */
79 public $dest_queue_id;
80 /**
81 * When this forward event occurred.
82 *
83 * @var datetime
84 */
85 public $time_stamp;
86 /**
87 * class constructor
88 *
89 * @return civicrm_mailing_event_forward
90 */
91 function __construct() {
92 $this->__table = 'civicrm_mailing_event_forward';
93 parent::__construct();
94 }
95 /**
96 * Returns foreign keys and entity references
97 *
98 * @return array
99 * [CRM_Core_Reference_Interface]
100 */
101 static function getReferenceColumns() {
102 if (!self::$_links) {
103 self::$_links = static ::createReferenceColumns(__CLASS__);
104 self::$_links[] = new CRM_Core_Reference_Basic(self::getTableName() , 'event_queue_id', 'civicrm_mailing_event_queue', 'id');
105 self::$_links[] = new CRM_Core_Reference_Basic(self::getTableName() , 'dest_queue_id', 'civicrm_mailing_event_queue', 'id');
106 }
107 return self::$_links;
108 }
109 /**
110 * Returns all the column names of this table
111 *
112 * @return array
113 */
114 static function &fields() {
115 if (!(self::$_fields)) {
116 self::$_fields = array(
117 'id' => array(
118 'name' => 'id',
119 'type' => CRM_Utils_Type::T_INT,
120 'title' => ts('Forward ID') ,
121 'required' => true,
122 ) ,
123 'event_queue_id' => array(
124 'name' => 'event_queue_id',
125 'type' => CRM_Utils_Type::T_INT,
126 'title' => ts('Mailing Event Queue') ,
127 'description' => 'FK to EventQueue',
128 'required' => true,
129 'FKClassName' => 'CRM_Mailing_Event_DAO_Queue',
130 ) ,
131 'dest_queue_id' => array(
132 'name' => 'dest_queue_id',
133 'type' => CRM_Utils_Type::T_INT,
134 'title' => ts('Destination Queue') ,
135 'description' => 'FK to EventQueue for destination',
136 'FKClassName' => 'CRM_Mailing_Event_DAO_Queue',
137 ) ,
138 'time_stamp' => array(
139 'name' => 'time_stamp',
140 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
141 'title' => ts('Timestamp') ,
142 'description' => 'When this forward event occurred.',
143 'required' => true,
144 ) ,
145 );
146 }
147 return self::$_fields;
148 }
149 /**
150 * Return a mapping from field-name to the corresponding key (as used in fields()).
151 *
152 * @return array
153 * Array(string $name => string $uniqueName).
154 */
155 static function &fieldKeys() {
156 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
157 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
158 }
159 return Civi::$statics[__CLASS__]['fieldKeys'];
160 }
161 /**
162 * Returns the names of this table
163 *
164 * @return string
165 */
166 static function getTableName() {
167 return self::$_tableName;
168 }
169 /**
170 * Returns if this table needs to be logged
171 *
172 * @return boolean
173 */
174 function getLog() {
175 return self::$_log;
176 }
177 /**
178 * Returns the list of fields that can be imported
179 *
180 * @param bool $prefix
181 *
182 * @return array
183 */
184 static function &import($prefix = false) {
185 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'mailing_event_forward', $prefix, array());
186 return $r;
187 }
188 /**
189 * Returns the list of fields that can be exported
190 *
191 * @param bool $prefix
192 *
193 * @return array
194 */
195 static function &export($prefix = false) {
196 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'mailing_event_forward', $prefix, array());
197 return $r;
198 }
199 }