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