phpcs - Fix error, "Expected 1 newline at end of file; XXX found".
[civicrm-core.git] / CRM / Activity / Import / Field.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35class CRM_Activity_Import_Field {
36
37 /**#@+
6a488035
TO
38 * @var string
39 */
40
41 /**
100fef9d 42 * Name of the field
6a488035
TO
43 */
44 public $_name;
45
46 /**
100fef9d 47 * Title of the field to be used in display
6a488035
TO
48 */
49 public $_title;
50
51 /**
100fef9d 52 * Type of field
6a488035
TO
53 * @var enum
54 */
55 public $_type;
56
57 /**
100fef9d 58 * Is this field required
6a488035
TO
59 * @var boolean
60 */
61 public $_required;
62
63 /**
100fef9d 64 * Data to be carried for use by a derived class
6a488035
TO
65 * @var object
66 */
67 public $_payload;
68
69 /**
100fef9d 70 * Regexp to match the CSV header of this column/field
6a488035
TO
71 * @var string
72 */
73 public $_headerPattern;
74
75 /**
100fef9d 76 * Regexp to match the pattern of data from various column/fields
6a488035
TO
77 * @var string
78 */
79 public $_dataPattern;
80
81 /**
100fef9d 82 * Value of this field
6a488035
TO
83 * @var object
84 */
85 public $_value;
ffd93213
EM
86
87 /**
100fef9d 88 * @param string $name
ffd93213
EM
89 * @param $title
90 * @param int $type
91 * @param string $headerPattern
92 * @param string $dataPattern
93 */
00be9182 94 public function __construct($name, $title, $type = CRM_Utils_Type::T_INT, $headerPattern = '//', $dataPattern = '//') {
6a488035
TO
95 $this->_name = $name;
96 $this->_title = $title;
97 $this->_type = $type;
98 $this->_headerPattern = $headerPattern;
99 $this->_dataPattern = $dataPattern;
100
101 $this->_value = NULL;
102 }
103
00be9182 104 public function resetValue() {
6a488035
TO
105 $this->_value = NULL;
106 }
107
108 /**
100fef9d 109 * The value is in string format. convert the value to the type of this field
6a488035
TO
110 * and set the field value with the appropriate type
111 */
00be9182 112 public function setValue($value) {
6a488035
TO
113 $this->_value = $value;
114 }
115
ffd93213
EM
116 /**
117 * @return bool
118 */
00be9182 119 public function validate() {
6a488035
TO
120
121 if (CRM_Utils_System::isNull($this->_value)) {
122 return TRUE;
123 }
124 return TRUE;
125 }
126}