CRM-21698 move formatting to processor class.
[civicrm-core.git] / CRM / Price / DAO / PriceField.php
CommitLineData
e501603b 1<?php
c3fc2621 2
e501603b
TO
3/**
4 * @package CRM
0f03f337 5 * @copyright CiviCRM LLC (c) 2004-2017
e501603b
TO
6 *
7 * Generated from xml/schema/CRM/Price/PriceField.xml
8 * DO NOT EDIT. Generated by CRM_Core_CodeGen
e7a6b91a 9 * (GenCodeChecksum:6ee89c3106c27af4ca96897826a2ef8c)
e501603b 10 */
c3fc2621 11
f41f0342 12/**
c3fc2621 13 * Database access object for the PriceField entity.
f41f0342 14 */
e501603b 15class CRM_Price_DAO_PriceField extends CRM_Core_DAO {
c3fc2621 16
e501603b 17 /**
f41f0342 18 * Static instance to hold the table name.
e501603b
TO
19 *
20 * @var string
21 */
22 static $_tableName = 'civicrm_price_field';
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 */
c3fc2621
CW
29 static $_log = TRUE;
30
e501603b
TO
31 /**
32 * Price Field
33 *
34 * @var int unsigned
35 */
36 public $id;
c3fc2621 37
e501603b
TO
38 /**
39 * FK to civicrm_price_set
40 *
41 * @var int unsigned
42 */
43 public $price_set_id;
c3fc2621 44
e501603b
TO
45 /**
46 * Variable name/programmatic handle for this field.
47 *
48 * @var string
49 */
50 public $name;
c3fc2621 51
e501603b
TO
52 /**
53 * Text for form field label (also friendly name for administering this field).
54 *
55 * @var string
56 */
57 public $label;
c3fc2621 58
e501603b 59 /**
e501603b
TO
60 * @var string
61 */
62 public $html_type;
c3fc2621 63
e501603b
TO
64 /**
65 * Enter a quantity for this field?
66 *
67 * @var boolean
68 */
69 public $is_enter_qty;
c3fc2621 70
e501603b
TO
71 /**
72 * Description and/or help text to display before this field.
73 *
74 * @var text
75 */
76 public $help_pre;
c3fc2621 77
e501603b
TO
78 /**
79 * Description and/or help text to display after this field.
80 *
81 * @var text
82 */
83 public $help_post;
c3fc2621 84
e501603b
TO
85 /**
86 * Order in which the fields should appear
87 *
88 * @var int
89 */
90 public $weight;
c3fc2621 91
e501603b
TO
92 /**
93 * Should the price be displayed next to the label for each option?
94 *
95 * @var boolean
96 */
97 public $is_display_amounts;
c3fc2621 98
e501603b
TO
99 /**
100 * number of options per line for checkbox and radio
101 *
102 * @var int unsigned
103 */
104 public $options_per_line;
c3fc2621 105
e501603b
TO
106 /**
107 * Is this price field active
108 *
109 * @var boolean
110 */
111 public $is_active;
c3fc2621 112
e501603b
TO
113 /**
114 * Is this price field required (value must be > 1)
115 *
116 * @var boolean
117 */
118 public $is_required;
c3fc2621 119
e501603b
TO
120 /**
121 * If non-zero, do not show this field before the date specified
122 *
123 * @var datetime
124 */
125 public $active_on;
c3fc2621 126
e501603b
TO
127 /**
128 * If non-zero, do not show this field after the date specified
129 *
130 * @var datetime
131 */
132 public $expire_on;
c3fc2621 133
e501603b
TO
134 /**
135 * Optional scripting attributes for field
136 *
137 * @var string
138 */
139 public $javascript;
c3fc2621 140
e501603b
TO
141 /**
142 * Implicit FK to civicrm_option_group with name = 'visibility'
143 *
144 * @var int unsigned
145 */
146 public $visibility_id;
c3fc2621 147
e501603b 148 /**
f41f0342 149 * Class constructor.
e501603b 150 */
c3fc2621 151 public function __construct() {
e501603b
TO
152 $this->__table = 'civicrm_price_field';
153 parent::__construct();
154 }
c3fc2621 155
e501603b 156 /**
f41f0342 157 * Returns foreign keys and entity references.
e501603b
TO
158 *
159 * @return array
160 * [CRM_Core_Reference_Interface]
161 */
c3fc2621 162 public static function getReferenceColumns() {
346aaaba
TO
163 if (!isset(Civi::$statics[__CLASS__]['links'])) {
164 Civi::$statics[__CLASS__]['links'] = static ::createReferenceColumns(__CLASS__);
c3fc2621 165 Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'price_set_id', 'civicrm_price_set', 'id');
346aaaba 166 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
e501603b 167 }
346aaaba 168 return Civi::$statics[__CLASS__]['links'];
e501603b 169 }
c3fc2621 170
e501603b
TO
171 /**
172 * Returns all the column names of this table
173 *
174 * @return array
175 */
c3fc2621 176 public static function &fields() {
346aaaba 177 if (!isset(Civi::$statics[__CLASS__]['fields'])) {
c3fc2621
CW
178 Civi::$statics[__CLASS__]['fields'] = [
179 'id' => [
e501603b
TO
180 'name' => 'id',
181 'type' => CRM_Utils_Type::T_INT,
c3fc2621 182 'title' => ts('Price Field ID'),
e501603b 183 'description' => 'Price Field',
c3fc2621 184 'required' => TRUE,
522a26c9 185 'table_name' => 'civicrm_price_field',
186 'entity' => 'PriceField',
187 'bao' => 'CRM_Price_BAO_PriceField',
6a7e5e5d 188 'localizable' => 0,
c3fc2621
CW
189 ],
190 'price_set_id' => [
e501603b
TO
191 'name' => 'price_set_id',
192 'type' => CRM_Utils_Type::T_INT,
c3fc2621 193 'title' => ts('Price Set'),
e501603b 194 'description' => 'FK to civicrm_price_set',
c3fc2621 195 'required' => TRUE,
522a26c9 196 'table_name' => 'civicrm_price_field',
197 'entity' => 'PriceField',
198 'bao' => 'CRM_Price_BAO_PriceField',
6a7e5e5d 199 'localizable' => 0,
e501603b 200 'FKClassName' => 'CRM_Price_DAO_PriceSet',
c3fc2621
CW
201 ],
202 'name' => [
e501603b
TO
203 'name' => 'name',
204 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 205 'title' => ts('Name'),
e501603b 206 'description' => 'Variable name/programmatic handle for this field.',
c3fc2621 207 'required' => TRUE,
e501603b
TO
208 'maxlength' => 255,
209 'size' => CRM_Utils_Type::HUGE,
522a26c9 210 'table_name' => 'civicrm_price_field',
211 'entity' => 'PriceField',
212 'bao' => 'CRM_Price_BAO_PriceField',
6a7e5e5d 213 'localizable' => 0,
c3fc2621 214 'html' => [
e501603b 215 'type' => 'Text',
c3fc2621
CW
216 ],
217 ],
218 'label' => [
e501603b
TO
219 'name' => 'label',
220 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 221 'title' => ts('Label'),
e501603b 222 'description' => 'Text for form field label (also friendly name for administering this field).',
c3fc2621 223 'required' => TRUE,
e501603b
TO
224 'maxlength' => 255,
225 'size' => CRM_Utils_Type::HUGE,
522a26c9 226 'table_name' => 'civicrm_price_field',
227 'entity' => 'PriceField',
228 'bao' => 'CRM_Price_BAO_PriceField',
6a7e5e5d 229 'localizable' => 1,
c3fc2621 230 'html' => [
e501603b 231 'type' => 'Text',
c3fc2621
CW
232 ],
233 ],
234 'html_type' => [
e501603b
TO
235 'name' => 'html_type',
236 'type' => CRM_Utils_Type::T_STRING,
c3fc2621
CW
237 'title' => ts('Html Type'),
238 'required' => TRUE,
e501603b
TO
239 'maxlength' => 12,
240 'size' => CRM_Utils_Type::TWELVE,
522a26c9 241 'table_name' => 'civicrm_price_field',
242 'entity' => 'PriceField',
243 'bao' => 'CRM_Price_BAO_PriceField',
6a7e5e5d 244 'localizable' => 0,
c3fc2621 245 'html' => [
e501603b 246 'type' => 'Select',
c3fc2621
CW
247 ],
248 'pseudoconstant' => [
e501603b 249 'callback' => 'CRM_Price_BAO_PriceField::htmlTypes',
c3fc2621
CW
250 ]
251 ],
252 'is_enter_qty' => [
e501603b
TO
253 'name' => 'is_enter_qty',
254 'type' => CRM_Utils_Type::T_BOOLEAN,
c3fc2621 255 'title' => ts('Price Field Quantity Required?'),
e501603b 256 'description' => 'Enter a quantity for this field?',
522a26c9 257 'table_name' => 'civicrm_price_field',
258 'entity' => 'PriceField',
259 'bao' => 'CRM_Price_BAO_PriceField',
6a7e5e5d 260 'localizable' => 0,
c3fc2621 261 'html' => [
e501603b 262 'type' => 'CheckBox',
c3fc2621
CW
263 ],
264 ],
265 'help_pre' => [
e501603b
TO
266 'name' => 'help_pre',
267 'type' => CRM_Utils_Type::T_TEXT,
c3fc2621 268 'title' => ts('Price Field Pre Text'),
e501603b
TO
269 'description' => 'Description and/or help text to display before this field.',
270 'rows' => 4,
271 'cols' => 80,
522a26c9 272 'table_name' => 'civicrm_price_field',
273 'entity' => 'PriceField',
274 'bao' => 'CRM_Price_BAO_PriceField',
6a7e5e5d 275 'localizable' => 1,
c3fc2621 276 'html' => [
e501603b 277 'type' => 'TextArea',
c3fc2621
CW
278 ],
279 ],
280 'help_post' => [
e501603b
TO
281 'name' => 'help_post',
282 'type' => CRM_Utils_Type::T_TEXT,
c3fc2621 283 'title' => ts('Price Field Post Text'),
e501603b
TO
284 'description' => 'Description and/or help text to display after this field.',
285 'rows' => 4,
286 'cols' => 80,
522a26c9 287 'table_name' => 'civicrm_price_field',
288 'entity' => 'PriceField',
289 'bao' => 'CRM_Price_BAO_PriceField',
6a7e5e5d 290 'localizable' => 1,
c3fc2621 291 'html' => [
e501603b 292 'type' => 'TextArea',
c3fc2621
CW
293 ],
294 ],
295 'weight' => [
e501603b
TO
296 'name' => 'weight',
297 'type' => CRM_Utils_Type::T_INT,
c3fc2621 298 'title' => ts('Order'),
e501603b
TO
299 'description' => 'Order in which the fields should appear',
300 'default' => '1',
522a26c9 301 'table_name' => 'civicrm_price_field',
302 'entity' => 'PriceField',
303 'bao' => 'CRM_Price_BAO_PriceField',
6a7e5e5d 304 'localizable' => 0,
c3fc2621 305 'html' => [
e501603b 306 'type' => 'Select',
c3fc2621
CW
307 ],
308 ],
309 'is_display_amounts' => [
e501603b
TO
310 'name' => 'is_display_amounts',
311 'type' => CRM_Utils_Type::T_BOOLEAN,
c3fc2621 312 'title' => ts('Price Field Show Amounts?'),
e501603b
TO
313 'description' => 'Should the price be displayed next to the label for each option?',
314 'default' => '1',
522a26c9 315 'table_name' => 'civicrm_price_field',
316 'entity' => 'PriceField',
317 'bao' => 'CRM_Price_BAO_PriceField',
6a7e5e5d 318 'localizable' => 0,
c3fc2621 319 'html' => [
e501603b 320 'type' => 'CheckBox',
c3fc2621
CW
321 ],
322 ],
323 'options_per_line' => [
e501603b
TO
324 'name' => 'options_per_line',
325 'type' => CRM_Utils_Type::T_INT,
c3fc2621 326 'title' => ts('Price Field Options per Row'),
e501603b
TO
327 'description' => 'number of options per line for checkbox and radio',
328 'default' => '1',
522a26c9 329 'table_name' => 'civicrm_price_field',
330 'entity' => 'PriceField',
331 'bao' => 'CRM_Price_BAO_PriceField',
6a7e5e5d 332 'localizable' => 0,
c3fc2621 333 'html' => [
e501603b 334 'type' => 'Text',
c3fc2621
CW
335 ],
336 ],
337 'is_active' => [
e501603b
TO
338 'name' => 'is_active',
339 'type' => CRM_Utils_Type::T_BOOLEAN,
c3fc2621 340 'title' => ts('Price Field Is Active?'),
e501603b
TO
341 'description' => 'Is this price field active',
342 'default' => '1',
522a26c9 343 'table_name' => 'civicrm_price_field',
344 'entity' => 'PriceField',
345 'bao' => 'CRM_Price_BAO_PriceField',
6a7e5e5d 346 'localizable' => 0,
c3fc2621 347 'html' => [
e501603b 348 'type' => 'CheckBox',
c3fc2621
CW
349 ],
350 ],
351 'is_required' => [
e501603b
TO
352 'name' => 'is_required',
353 'type' => CRM_Utils_Type::T_BOOLEAN,
c3fc2621 354 'title' => ts('Price Field is Required?'),
e501603b
TO
355 'description' => 'Is this price field required (value must be > 1)',
356 'default' => '1',
522a26c9 357 'table_name' => 'civicrm_price_field',
358 'entity' => 'PriceField',
359 'bao' => 'CRM_Price_BAO_PriceField',
6a7e5e5d 360 'localizable' => 0,
c3fc2621 361 'html' => [
e501603b 362 'type' => 'CheckBox',
c3fc2621
CW
363 ],
364 ],
365 'active_on' => [
e501603b
TO
366 'name' => 'active_on',
367 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
c3fc2621 368 'title' => ts('Price Field Start Date'),
e501603b
TO
369 'description' => 'If non-zero, do not show this field before the date specified',
370 'default' => 'NULL',
522a26c9 371 'table_name' => 'civicrm_price_field',
372 'entity' => 'PriceField',
373 'bao' => 'CRM_Price_BAO_PriceField',
6a7e5e5d 374 'localizable' => 0,
c3fc2621 375 'html' => [
e501603b 376 'type' => 'CheckBox',
c3fc2621
CW
377 ],
378 ],
379 'expire_on' => [
e501603b
TO
380 'name' => 'expire_on',
381 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
c3fc2621 382 'title' => ts('Price Field End Date'),
e501603b
TO
383 'description' => 'If non-zero, do not show this field after the date specified',
384 'default' => 'NULL',
522a26c9 385 'table_name' => 'civicrm_price_field',
386 'entity' => 'PriceField',
387 'bao' => 'CRM_Price_BAO_PriceField',
6a7e5e5d 388 'localizable' => 0,
c3fc2621 389 'html' => [
e501603b 390 'type' => 'Select Date',
c3fc2621
CW
391 ],
392 ],
393 'javascript' => [
e501603b
TO
394 'name' => 'javascript',
395 'type' => CRM_Utils_Type::T_STRING,
c3fc2621 396 'title' => ts('Price Field Javascript'),
e501603b
TO
397 'description' => 'Optional scripting attributes for field',
398 'maxlength' => 255,
399 'size' => CRM_Utils_Type::HUGE,
522a26c9 400 'table_name' => 'civicrm_price_field',
401 'entity' => 'PriceField',
402 'bao' => 'CRM_Price_BAO_PriceField',
6a7e5e5d 403 'localizable' => 0,
c3fc2621 404 'html' => [
e501603b 405 'type' => 'Text',
c3fc2621
CW
406 ],
407 ],
408 'visibility_id' => [
e501603b
TO
409 'name' => 'visibility_id',
410 'type' => CRM_Utils_Type::T_INT,
c3fc2621 411 'title' => ts('Price Field Visibility'),
e501603b
TO
412 'description' => 'Implicit FK to civicrm_option_group with name = \'visibility\'',
413 'default' => '1',
522a26c9 414 'table_name' => 'civicrm_price_field',
415 'entity' => 'PriceField',
416 'bao' => 'CRM_Price_BAO_PriceField',
6a7e5e5d 417 'localizable' => 0,
c3fc2621 418 'html' => [
e501603b 419 'type' => 'Select',
c3fc2621
CW
420 ],
421 'pseudoconstant' => [
e501603b
TO
422 'optionGroupName' => 'visibility',
423 'optionEditPath' => 'civicrm/admin/options/visibility',
c3fc2621
CW
424 ]
425 ],
426 ];
346aaaba 427 CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']);
e501603b 428 }
346aaaba 429 return Civi::$statics[__CLASS__]['fields'];
e501603b 430 }
c3fc2621 431
e501603b 432 /**
bd8e0b14 433 * Return a mapping from field-name to the corresponding key (as used in fields()).
e501603b
TO
434 *
435 * @return array
bd8e0b14 436 * Array(string $name => string $uniqueName).
e501603b 437 */
c3fc2621 438 public static function &fieldKeys() {
bd8e0b14
TO
439 if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) {
440 Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields()));
e501603b 441 }
bd8e0b14 442 return Civi::$statics[__CLASS__]['fieldKeys'];
e501603b 443 }
c3fc2621 444
e501603b
TO
445 /**
446 * Returns the names of this table
447 *
448 * @return string
449 */
c3fc2621 450 public static function getTableName() {
e501603b
TO
451 return CRM_Core_DAO::getLocaleTableName(self::$_tableName);
452 }
c3fc2621 453
e501603b
TO
454 /**
455 * Returns if this table needs to be logged
456 *
c3fc2621 457 * @return bool
e501603b 458 */
c3fc2621 459 public function getLog() {
e501603b
TO
460 return self::$_log;
461 }
c3fc2621 462
e501603b
TO
463 /**
464 * Returns the list of fields that can be imported
465 *
466 * @param bool $prefix
467 *
468 * @return array
469 */
c3fc2621
CW
470 public static function &import($prefix = FALSE) {
471 $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'price_field', $prefix, []);
60808919 472 return $r;
e501603b 473 }
c3fc2621 474
e501603b
TO
475 /**
476 * Returns the list of fields that can be exported
477 *
478 * @param bool $prefix
479 *
480 * @return array
481 */
c3fc2621
CW
482 public static function &export($prefix = FALSE) {
483 $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'price_field', $prefix, []);
60808919 484 return $r;
e501603b 485 }
c3fc2621 486
e7a6b91a
AS
487 /**
488 * Returns the list of indices
c3fc2621
CW
489 *
490 * @param bool $localize
491 *
492 * @return array
e7a6b91a
AS
493 */
494 public static function indices($localize = TRUE) {
c3fc2621
CW
495 $indices = [
496 'index_name' => [
e7a6b91a 497 'name' => 'index_name',
c3fc2621 498 'field' => [
e7a6b91a 499 0 => 'name',
c3fc2621
CW
500 ],
501 'localizable' => FALSE,
e7a6b91a 502 'sig' => 'civicrm_price_field::0::name',
c3fc2621
CW
503 ],
504 ];
e7a6b91a
AS
505 return ($localize && !empty($indices)) ? CRM_Core_DAO_AllCoreTables::multilingualize(__CLASS__, $indices) : $indices;
506 }
c3fc2621 507
e501603b 508}