(NFC) Set _log and _table_name variables to be public
[civicrm-core.git] / CRM / Case / DAO / Case.php
CommitLineData
e501603b 1<?php
c3fc2621 2
e501603b
TO
3/**
4 * @package CRM
6b83d5bd 5 * @copyright CiviCRM LLC (c) 2004-2019
e501603b
TO
6 *
7 * Generated from xml/schema/CRM/Case/Case.xml
8 * DO NOT EDIT. Generated by CRM_Core_CodeGen
e380ee3b 9 * (GenCodeChecksum:a9960d56bc697d6cbc5347f9bc6a78bc)
e501603b 10 */
c3fc2621 11
f41f0342 12/**
c3fc2621 13 * Database access object for the Case entity.
f41f0342 14 */
e501603b 15class CRM_Case_DAO_Case extends CRM_Core_DAO {
c3fc2621 16
e501603b 17 /**
f41f0342 18 * Static instance to hold the table name.
e501603b
TO
19 *
20 * @var string
21 */
fa45b5b9 22 public static $_tableName = 'civicrm_case';
c3fc2621 23
e501603b 24 /**
f41f0342 25 * Should CiviCRM log any modifications to this table in the civicrm_log table.
e501603b 26 *
c3fc2621 27 * @var bool
e501603b 28 */
fa45b5b9 29 public static $_log = TRUE;
c3fc2621 30
e501603b
TO
31 /**
32 * Unique Case ID
33 *
34 * @var int unsigned
35 */
36 public $id;
c3fc2621 37
e501603b
TO
38 /**
39 * FK to civicrm_case_type.id
40 *
41 * @var int unsigned
42 */
43 public $case_type_id;
c3fc2621 44
e501603b
TO
45 /**
46 * Short name of the case.
47 *
48 * @var string
49 */
50 public $subject;
c3fc2621 51
e501603b
TO
52 /**
53 * Date on which given case starts.
54 *
55 * @var date
56 */
57 public $start_date;
c3fc2621 58
e501603b
TO
59 /**
60 * Date on which given case ends.
61 *
62 * @var date
63 */
64 public $end_date;
c3fc2621 65
e501603b
TO
66 /**
67 * Details about the meeting (agenda, notes, etc).
68 *
69 * @var text
70 */
71 public $details;
c3fc2621 72
e501603b
TO
73 /**
74 * Id of case status.
75 *
76 * @var int unsigned
77 */
78 public $status_id;
c3fc2621 79
e501603b 80 /**
e501603b
TO
81 * @var boolean
82 */
83 public $is_deleted;
c3fc2621 84
3ed77291
TO
85 /**
86 * When was the case was created.
87 *
88 * @var timestamp
89 */
90 public $created_date;
c3fc2621 91
3ed77291
TO
92 /**
93 * When was the case (or closely related entity) was created or modified or deleted.
94 *
95 * @var timestamp
96 */
97 public $modified_date;
c3fc2621 98
e501603b 99 /**
f41f0342 100 * Class constructor.
e501603b 101 */
c3fc2621 102 public function __construct() {
e501603b
TO
103 $this->__table = 'civicrm_case';
104 parent::__construct();
105 }
c3fc2621 106
e501603b 107 /**
f41f0342 108 * Returns foreign keys and entity references.
e501603b
TO
109 *
110 * @return array
111 * [CRM_Core_Reference_Interface]
112 */
c3fc2621 113 public static function getReferenceColumns() {
346aaaba 114 if (!isset(Civi::$statics[__CLASS__]['links'])) {
fa45b5b9 115 Civi::$statics[__CLASS__]['links'] = static::createReferenceColumns(__CLASS__);
c3fc2621 116 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'case_type_id', 'civicrm_case_type', 'id');
346aaaba 117 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
e501603b 118 }
346aaaba 119 return Civi::$statics[__CLASS__]['links'];
e501603b 120 }
c3fc2621 121
e501603b
TO
122 /**
123 * Returns all the column names of this table
124 *
125 * @return array
126 */
c3fc2621 127 public static function &fields() {
346aaaba 128 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
c3fc2621
CW
129 Civi::$statics[__CLASS__]['fields'] = [
130 'case_id' => [
e501603b
TO
131 'name' => 'id',
132 'type' => CRM_Utils_Type::T_INT,
c3fc2621 133 'title' => ts('Case ID'),
215b423e 134 'description' => ts('Unique Case ID'),
c3fc2621
CW
135 'required' => TRUE,
136 'import' => TRUE,
e501603b
TO
137 'where' => 'civicrm_case.id',
138 'headerPattern' => '',
139 'dataPattern' => '',
c3fc2621 140 'export' => TRUE,
522a26c9 141 'table_name' => 'civicrm_case',
142 'entity' => 'Case',
143 'bao' => 'CRM_Case_BAO_Case',
6a7e5e5d 144 'localizable' => 0,
c3fc2621
CW
145 ],
146 'case_type_id' => [
e501603b
TO
147 'name' => 'case_type_id',
148 'type' => CRM_Utils_Type::T_INT,
c3fc2621 149 'title' => ts('Case Type'),
215b423e 150 'description' => ts('FK to civicrm_case_type.id'),
c3fc2621
CW
151 'required' => TRUE,
152 'import' => TRUE,
e501603b
TO
153 'where' => 'civicrm_case.case_type_id',
154 'headerPattern' => '',
155 'dataPattern' => '',
c3fc2621 156 'export' => FALSE,
522a26c9 157 'table_name' => 'civicrm_case',
158 'entity' => 'Case',
159 'bao' => 'CRM_Case_BAO_Case',
6a7e5e5d 160 'localizable' => 0,
e501603b 161 'FKClassName' => 'CRM_Case_DAO_CaseType',
c3fc2621 162 'html' => [
e501603b 163 'type' => 'Select',
c3fc2621
CW
164 ],
165 'pseudoconstant' => [
e501603b
TO
166 'table' => 'civicrm_case_type',
167 'keyColumn' => 'id',
168 'labelColumn' => 'title',
c3fc2621
CW
169 ]
170 ],
171 'case_subject' => [
e501603b
TO
172 'name' => 'subject',
173 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 174 'title' => ts('Case Subject'),
215b423e 175 'description' => ts('Short name of the case.'),
e501603b
TO
176 'maxlength' => 128,
177 'size' => CRM_Utils_Type::HUGE,
c3fc2621 178 'import' => TRUE,
e501603b
TO
179 'where' => 'civicrm_case.subject',
180 'headerPattern' => '',
181 'dataPattern' => '',
c3fc2621 182 'export' => TRUE,
522a26c9 183 'table_name' => 'civicrm_case',
184 'entity' => 'Case',
185 'bao' => 'CRM_Case_BAO_Case',
6a7e5e5d 186 'localizable' => 0,
c3fc2621 187 'html' => [
e501603b 188 'type' => 'Text',
c3fc2621
CW
189 ],
190 ],
191 'case_start_date' => [
e501603b
TO
192 'name' => 'start_date',
193 'type' => CRM_Utils_Type::T_DATE,
c3fc2621 194 'title' => ts('Case Start Date'),
215b423e 195 'description' => ts('Date on which given case starts.'),
c3fc2621 196 'import' => TRUE,
e501603b
TO
197 'where' => 'civicrm_case.start_date',
198 'headerPattern' => '',
199 'dataPattern' => '',
c3fc2621 200 'export' => TRUE,
522a26c9 201 'table_name' => 'civicrm_case',
202 'entity' => 'Case',
203 'bao' => 'CRM_Case_BAO_Case',
6a7e5e5d 204 'localizable' => 0,
c3fc2621 205 'html' => [
e501603b 206 'type' => 'Select Date',
e0d4ddde 207 'formatType' => 'activityDateTime',
c3fc2621
CW
208 ],
209 ],
210 'case_end_date' => [
e501603b
TO
211 'name' => 'end_date',
212 'type' => CRM_Utils_Type::T_DATE,
c3fc2621 213 'title' => ts('Case End Date'),
215b423e 214 'description' => ts('Date on which given case ends.'),
c3fc2621 215 'import' => TRUE,
e501603b
TO
216 'where' => 'civicrm_case.end_date',
217 'headerPattern' => '',
218 'dataPattern' => '',
c3fc2621 219 'export' => TRUE,
522a26c9 220 'table_name' => 'civicrm_case',
221 'entity' => 'Case',
222 'bao' => 'CRM_Case_BAO_Case',
6a7e5e5d 223 'localizable' => 0,
c3fc2621 224 'html' => [
e501603b 225 'type' => 'Select Date',
e0d4ddde 226 'formatType' => 'activityDateTime',
c3fc2621
CW
227 ],
228 ],
229 'details' => [
e501603b
TO
230 'name' => 'details',
231 'type' => CRM_Utils_Type::T_TEXT,
c3fc2621 232 'title' => ts('Details'),
215b423e 233 'description' => ts('Details about the meeting (agenda, notes, etc).'),
e501603b
TO
234 'rows' => 8,
235 'cols' => 60,
522a26c9 236 'table_name' => 'civicrm_case',
237 'entity' => 'Case',
238 'bao' => 'CRM_Case_BAO_Case',
6a7e5e5d 239 'localizable' => 0,
c3fc2621 240 'html' => [
e501603b 241 'type' => 'TextArea',
c3fc2621
CW
242 ],
243 ],
244 'case_status_id' => [
e501603b
TO
245 'name' => 'status_id',
246 'type' => CRM_Utils_Type::T_INT,
c3fc2621 247 'title' => ts('Case Status'),
215b423e 248 'description' => ts('Id of case status.'),
c3fc2621
CW
249 'required' => TRUE,
250 'import' => TRUE,
e501603b
TO
251 'where' => 'civicrm_case.status_id',
252 'headerPattern' => '',
253 'dataPattern' => '',
c3fc2621 254 'export' => FALSE,
522a26c9 255 'table_name' => 'civicrm_case',
256 'entity' => 'Case',
257 'bao' => 'CRM_Case_BAO_Case',
6a7e5e5d 258 'localizable' => 0,
c3fc2621 259 'html' => [
e501603b 260 'type' => 'Select',
c3fc2621
CW
261 ],
262 'pseudoconstant' => [
e501603b
TO
263 'optionGroupName' => 'case_status',
264 'optionEditPath' => 'civicrm/admin/options/case_status',
c3fc2621
CW
265 ]
266 ],
267 'case_deleted' => [
e501603b
TO
268 'name' => 'is_deleted',
269 'type' => CRM_Utils_Type::T_BOOLEAN,
c3fc2621
CW
270 'title' => ts('Case is in the Trash'),
271 'import' => TRUE,
e501603b
TO
272 'where' => 'civicrm_case.is_deleted',
273 'headerPattern' => '',
274 'dataPattern' => '',
c3fc2621 275 'export' => TRUE,
45a83e42 276 'default' => '0',
522a26c9 277 'table_name' => 'civicrm_case',
278 'entity' => 'Case',
279 'bao' => 'CRM_Case_BAO_Case',
6a7e5e5d 280 'localizable' => 0,
c3fc2621
CW
281 ],
282 'case_created_date' => [
3ed77291
TO
283 'name' => 'created_date',
284 'type' => CRM_Utils_Type::T_TIMESTAMP,
c3fc2621 285 'title' => ts('Created Date'),
215b423e 286 'description' => ts('When was the case was created.'),
c3fc2621
CW
287 'required' => FALSE,
288 'export' => TRUE,
3ed77291
TO
289 'where' => 'civicrm_case.created_date',
290 'headerPattern' => '',
291 'dataPattern' => '',
292 'default' => 'NULL',
293 'table_name' => 'civicrm_case',
294 'entity' => 'Case',
295 'bao' => 'CRM_Case_BAO_Case',
296 'localizable' => 0,
c3fc2621
CW
297 ],
298 'case_modified_date' => [
3ed77291
TO
299 'name' => 'modified_date',
300 'type' => CRM_Utils_Type::T_TIMESTAMP,
c3fc2621 301 'title' => ts('Modified Date'),
215b423e 302 'description' => ts('When was the case (or closely related entity) was created or modified or deleted.'),
c3fc2621
CW
303 'required' => FALSE,
304 'export' => TRUE,
3ed77291
TO
305 'where' => 'civicrm_case.modified_date',
306 'headerPattern' => '',
307 'dataPattern' => '',
308 'default' => 'CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP',
309 'table_name' => 'civicrm_case',
310 'entity' => 'Case',
311 'bao' => 'CRM_Case_BAO_Case',
312 'localizable' => 0,
c3fc2621
CW
313 ],
314 ];
346aaaba 315 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
e501603b 316 }
346aaaba 317 return Civi::$statics[__CLASS__]['fields'];
e501603b 318 }
c3fc2621 319
e501603b 320 /**
bd8e0b14 321 * Return a mapping from field-name to the corresponding key (as used in fields()).
e501603b
TO
322 *
323 * @return array
bd8e0b14 324 * Array(string $name => string $uniqueName).
e501603b 325 */
c3fc2621 326 public static function &fieldKeys() {
bd8e0b14
TO
327 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
328 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
e501603b 329 }
bd8e0b14 330 return Civi::$statics[__CLASS__]['fieldKeys'];
e501603b 331 }
c3fc2621 332
e501603b
TO
333 /**
334 * Returns the names of this table
335 *
336 * @return string
337 */
c3fc2621 338 public static function getTableName() {
e501603b
TO
339 return self::$_tableName;
340 }
c3fc2621 341
e501603b
TO
342 /**
343 * Returns if this table needs to be logged
344 *
c3fc2621 345 * @return bool
e501603b 346 */
c3fc2621 347 public function getLog() {
e501603b
TO
348 return self::$_log;
349 }
c3fc2621 350
e501603b
TO
351 /**
352 * Returns the list of fields that can be imported
353 *
354 * @param bool $prefix
355 *
356 * @return array
357 */
c3fc2621
CW
358 public static function &import($prefix = FALSE) {
359 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'case', $prefix, []);
60808919 360 return $r;
e501603b 361 }
c3fc2621 362
e501603b
TO
363 /**
364 * Returns the list of fields that can be exported
365 *
366 * @param bool $prefix
367 *
368 * @return array
369 */
c3fc2621
CW
370 public static function &export($prefix = FALSE) {
371 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'case', $prefix, []);
60808919 372 return $r;
e501603b 373 }
c3fc2621 374
e7a6b91a
AS
375 /**
376 * Returns the list of indices
c3fc2621
CW
377 *
378 * @param bool $localize
379 *
380 * @return array
e7a6b91a
AS
381 */
382 public static function indices($localize = TRUE) {
c3fc2621
CW
383 $indices = [
384 'index_case_type_id' => [
e7a6b91a 385 'name' => 'index_case_type_id',
c3fc2621 386 'field' => [
e7a6b91a 387 0 => 'case_type_id',
c3fc2621
CW
388 ],
389 'localizable' => FALSE,
e7a6b91a 390 'sig' => 'civicrm_case::0::case_type_id',
c3fc2621
CW
391 ],
392 'index_is_deleted' => [
e7a6b91a 393 'name' => 'index_is_deleted',
c3fc2621 394 'field' => [
e7a6b91a 395 0 => 'is_deleted',
c3fc2621
CW
396 ],
397 'localizable' => FALSE,
e7a6b91a 398 'sig' => 'civicrm_case::0::is_deleted',
c3fc2621
CW
399 ],
400 ];
e7a6b91a
AS
401 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
402 }
c3fc2621 403
e501603b 404}