CRM-20312 add field localisation data to DAO.
[civicrm-core.git] / CRM / Mailing / DAO / MailingJob.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/MailingJob.xml
32 * DO NOT EDIT. Generated by CRM_Core_CodeGen
022785d8 33 * (GenCodeChecksum:c08c4d0fc52564ca707e07af4649231c)
e501603b
TO
34 */
35require_once 'CRM/Core/DAO.php';
36require_once 'CRM/Utils/Type.php';
f41f0342 37/**
38 * CRM_Mailing_DAO_MailingJob constructor.
39 */
e501603b
TO
40class CRM_Mailing_DAO_MailingJob 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_job';
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 * The ID of the mailing this Job will send.
60 *
61 * @var int unsigned
62 */
63 public $mailing_id;
64 /**
65 * date on which this job was scheduled.
66 *
67 * @var datetime
68 */
69 public $scheduled_date;
70 /**
71 * date on which this job was started.
72 *
73 * @var datetime
74 */
75 public $start_date;
76 /**
77 * date on which this job ended.
78 *
79 * @var datetime
80 */
81 public $end_date;
82 /**
83 * The state of this job
84 *
85 * @var string
86 */
87 public $status;
88 /**
89 * Is this job for a test mail?
90 *
91 * @var boolean
92 */
93 public $is_test;
94 /**
95 * Type of mailling job: null | child
96 *
97 * @var string
98 */
99 public $job_type;
100 /**
101 * Parent job id
102 *
103 * @var int unsigned
104 */
105 public $parent_id;
106 /**
107 * Offset of the child job
108 *
109 * @var int
110 */
111 public $job_offset;
112 /**
113 * Queue size limit for each child job
114 *
115 * @var int
116 */
117 public $job_limit;
118 /**
f41f0342 119 * Class constructor.
e501603b
TO
120 */
121 function __construct() {
122 $this->__table = 'civicrm_mailing_job';
123 parent::__construct();
124 }
125 /**
f41f0342 126 * Returns foreign keys and entity references.
e501603b
TO
127 *
128 * @return array
129 * [CRM_Core_Reference_Interface]
130 */
131 static function getReferenceColumns() {
346aaaba
TO
132 if (!isset(Civi::$statics[__CLASS__]['links'])) {
133 Civi::$statics[__CLASS__]['links'] = static ::createReferenceColumns(__CLASS__);
134 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName() , 'mailing_id', 'civicrm_mailing', 'id');
135 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName() , 'parent_id', 'civicrm_mailing_job', 'id');
136 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
e501603b 137 }
346aaaba 138 return Civi::$statics[__CLASS__]['links'];
e501603b
TO
139 }
140 /**
141 * Returns all the column names of this table
142 *
143 * @return array
144 */
145 static function &fields() {
346aaaba
TO
146 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
147 Civi::$statics[__CLASS__]['fields'] = array(
e501603b
TO
148 'id' => array(
149 'name' => 'id',
150 'type' => CRM_Utils_Type::T_INT,
151 'title' => ts('Mailing Job ID') ,
152 'required' => true,
522a26c9 153 'table_name' => 'civicrm_mailing_job',
154 'entity' => 'MailingJob',
155 'bao' => 'CRM_Mailing_BAO_MailingJob',
e501603b
TO
156 ) ,
157 'mailing_id' => array(
158 'name' => 'mailing_id',
159 'type' => CRM_Utils_Type::T_INT,
160 'title' => ts('Mailing') ,
161 'description' => 'The ID of the mailing this Job will send.',
162 'required' => true,
522a26c9 163 'table_name' => 'civicrm_mailing_job',
164 'entity' => 'MailingJob',
165 'bao' => 'CRM_Mailing_BAO_MailingJob',
e501603b
TO
166 'FKClassName' => 'CRM_Mailing_DAO_Mailing',
167 ) ,
168 'scheduled_date' => array(
169 'name' => 'scheduled_date',
170 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
171 'title' => ts('Mailing Scheduled Date') ,
172 'description' => 'date on which this job was scheduled.',
522a26c9 173 'table_name' => 'civicrm_mailing_job',
174 'entity' => 'MailingJob',
175 'bao' => 'CRM_Mailing_BAO_MailingJob',
e501603b
TO
176 ) ,
177 'start_date' => array(
178 'name' => 'start_date',
179 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
180 'title' => ts('Mailing Job Start Date') ,
181 'description' => 'date on which this job was started.',
522a26c9 182 'table_name' => 'civicrm_mailing_job',
183 'entity' => 'MailingJob',
184 'bao' => 'CRM_Mailing_BAO_MailingJob',
e501603b
TO
185 ) ,
186 'end_date' => array(
187 'name' => 'end_date',
188 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
189 'title' => ts('Mailing Job End Date') ,
190 'description' => 'date on which this job ended.',
522a26c9 191 'table_name' => 'civicrm_mailing_job',
192 'entity' => 'MailingJob',
193 'bao' => 'CRM_Mailing_BAO_MailingJob',
e501603b
TO
194 ) ,
195 'status' => array(
196 'name' => 'status',
197 'type' => CRM_Utils_Type::T_STRING,
198 'title' => ts('Mailing Job Status') ,
199 'description' => 'The state of this job',
200 'maxlength' => 12,
201 'size' => CRM_Utils_Type::TWELVE,
522a26c9 202 'table_name' => 'civicrm_mailing_job',
203 'entity' => 'MailingJob',
204 'bao' => 'CRM_Mailing_BAO_MailingJob',
e501603b
TO
205 'html' => array(
206 'type' => 'Select',
207 ) ,
208 'pseudoconstant' => array(
209 'callback' => 'CRM_Core_SelectValues::getMailingJobStatus',
210 )
211 ) ,
212 'is_test' => array(
213 'name' => 'is_test',
214 'type' => CRM_Utils_Type::T_BOOLEAN,
215 'title' => ts('Mailing Job Is Test?') ,
216 'description' => 'Is this job for a test mail?',
522a26c9 217 'table_name' => 'civicrm_mailing_job',
218 'entity' => 'MailingJob',
219 'bao' => 'CRM_Mailing_BAO_MailingJob',
e501603b
TO
220 ) ,
221 'job_type' => array(
222 'name' => 'job_type',
223 'type' => CRM_Utils_Type::T_STRING,
224 'title' => ts('Mailing Job Type') ,
225 'description' => 'Type of mailling job: null | child ',
226 'maxlength' => 255,
227 'size' => CRM_Utils_Type::HUGE,
522a26c9 228 'table_name' => 'civicrm_mailing_job',
229 'entity' => 'MailingJob',
230 'bao' => 'CRM_Mailing_BAO_MailingJob',
e501603b
TO
231 ) ,
232 'parent_id' => array(
233 'name' => 'parent_id',
234 'type' => CRM_Utils_Type::T_INT,
235 'title' => ts('Mailing Job Parent') ,
236 'description' => 'Parent job id',
237 'default' => 'NULL',
522a26c9 238 'table_name' => 'civicrm_mailing_job',
239 'entity' => 'MailingJob',
240 'bao' => 'CRM_Mailing_BAO_MailingJob',
e501603b
TO
241 'FKClassName' => 'CRM_Mailing_DAO_MailingJob',
242 ) ,
243 'job_offset' => array(
244 'name' => 'job_offset',
245 'type' => CRM_Utils_Type::T_INT,
246 'title' => ts('Mailing Job Offset') ,
247 'description' => 'Offset of the child job',
522a26c9 248 'table_name' => 'civicrm_mailing_job',
249 'entity' => 'MailingJob',
250 'bao' => 'CRM_Mailing_BAO_MailingJob',
e501603b
TO
251 ) ,
252 'job_limit' => array(
253 'name' => 'job_limit',
254 'type' => CRM_Utils_Type::T_INT,
255 'title' => ts('Mailing Job Limit') ,
256 'description' => 'Queue size limit for each child job',
522a26c9 257 'table_name' => 'civicrm_mailing_job',
258 'entity' => 'MailingJob',
259 'bao' => 'CRM_Mailing_BAO_MailingJob',
e501603b
TO
260 ) ,
261 );
346aaaba 262 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
e501603b 263 }
346aaaba 264 return Civi::$statics[__CLASS__]['fields'];
e501603b
TO
265 }
266 /**
bd8e0b14 267 * Return a mapping from field-name to the corresponding key (as used in fields()).
e501603b
TO
268 *
269 * @return array
bd8e0b14 270 * Array(string $name => string $uniqueName).
e501603b
TO
271 */
272 static function &fieldKeys() {
bd8e0b14
TO
273 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
274 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
e501603b 275 }
bd8e0b14 276 return Civi::$statics[__CLASS__]['fieldKeys'];
e501603b
TO
277 }
278 /**
279 * Returns the names of this table
280 *
281 * @return string
282 */
283 static function getTableName() {
284 return self::$_tableName;
285 }
286 /**
287 * Returns if this table needs to be logged
288 *
289 * @return boolean
290 */
291 function getLog() {
292 return self::$_log;
293 }
294 /**
295 * Returns the list of fields that can be imported
296 *
297 * @param bool $prefix
298 *
299 * @return array
300 */
301 static function &import($prefix = false) {
60808919
TO
302 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'mailing_job', $prefix, array());
303 return $r;
e501603b
TO
304 }
305 /**
306 * Returns the list of fields that can be exported
307 *
308 * @param bool $prefix
309 *
310 * @return array
311 */
312 static function &export($prefix = false) {
60808919
TO
313 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'mailing_job', $prefix, array());
314 return $r;
e501603b
TO
315 }
316}