Merge pull request #11703 from eileenmcnaughton/export
[civicrm-core.git] / CRM / Event / Import / Field.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
8c9251b3 6 | Copyright CiviCRM LLC (c) 2004-2018 |
6a488035
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
0cf587a7
EM
27
28/**
29 * Class CRM_Event_Import_Field
30 */
6a488035
TO
31class CRM_Event_Import_Field {
32
33 /**#@+
6a488035
TO
34 * @var string
35 */
36
37 /**
100fef9d 38 * Name of the field
6a488035
TO
39 */
40 public $_name;
41
42 /**
100fef9d 43 * Title of the field to be used in display
6a488035
TO
44 */
45 public $_title;
46
47 /**
100fef9d 48 * Type of field
6a488035
TO
49 * @var enum
50 */
51 public $_type;
52
53 /**
100fef9d 54 * Regexp to match the CSV header of this column/field
6a488035
TO
55 * @var string
56 */
57 public $_headerPattern;
58
59 /**
100fef9d 60 * Regexp to match the pattern of data from various column/fields
6a488035
TO
61 * @var string
62 */
63 public $_dataPattern;
64
65 /**
100fef9d 66 * Value of this field
6a488035
TO
67 * @var object
68 */
69 public $_value;
0cf587a7
EM
70
71 /**
100fef9d 72 * @param string $name
0cf587a7
EM
73 * @param $title
74 * @param int $type
75 * @param string $headerPattern
76 * @param string $dataPattern
77 */
00be9182 78 public function __construct($name, $title, $type = CRM_Utils_Type::T_INT, $headerPattern = '//', $dataPattern = '//') {
6a488035
TO
79 $this->_name = $name;
80 $this->_title = $title;
81 $this->_type = $type;
82 $this->_headerPattern = $headerPattern;
83 $this->_dataPattern = $dataPattern;
84
85 $this->_value = NULL;
86 }
87
00be9182 88 public function resetValue() {
6a488035
TO
89 $this->_value = NULL;
90 }
91
92 /**
ad37ac8e 93 * Convert the value to the type of this field and set the field value with the appropriate type.
94 *
95 * @param string $value
6a488035 96 */
00be9182 97 public function setValue($value) {
6a488035
TO
98 $this->_value = $value;
99 }
100
0cf587a7
EM
101 /**
102 * @return bool
103 */
00be9182 104 public function validate() {
6a488035
TO
105 if (CRM_Utils_System::isNull($this->_value)) {
106 return TRUE;
107 }
108
109 switch ($this->_name) {
110 case 'contact_id':
111 // note: we validate extistence of the contact in API, upon
112 // insert (it would be too costlty to do a db call here)
113 return CRM_Utils_Rule::integer($this->_value);
114
115 case 'register_date':
116 return CRM_Utils_Rule::date($this->_value);
ea100cb5 117
e70a7fc0 118 /* @codingStandardsIgnoreStart
6a488035
TO
119 case 'event_id':
120 static $events = null;
121 if (!$events) {
122 $events = CRM_Event_PseudoConstant::event();
123 }
124 if (in_array($this->_value, $events)) {
125 return true;
0db6c3e1
TO
126 }
127 else {
6a488035
TO
128 return false;
129 }
130 break;
e70a7fc0 131 @codingStandardsIgnoreEnd */
6a488035
TO
132
133 default:
134 break;
135 }
136
137 // check whether that's a valid custom field id
138 // and if so, check the contents' validity
139 if ($customFieldID = CRM_Core_BAO_CustomField::getKeyID($this->_name)) {
140 static $customFields = NULL;
141 if (!$customFields) {
719a6fec 142 $customFields = CRM_Core_BAO_CustomField::getFields('Participant');
6a488035
TO
143 }
144 if (!array_key_exists($customFieldID, $customFields)) {
145 return FALSE;
146 }
147 return CRM_Core_BAO_CustomValue::typecheck($customFields[$customFieldID]['data_type'], $this->_value);
148 }
149 return TRUE;
150 }
96025800 151
6a488035 152}