X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FContact%2FImport%2FField.php;h=535e179a4c496785e7c7efae24979fb88a5728ff;hb=68383a402e0b8365c7c50e5304f746a2a9bfb5a7;hp=247ad9863384e3b6c4d9034d1711b9a4330146ec;hpb=51daafaadd025703b2f8d6e3d27898e3768908f9;p=civicrm-core.git diff --git a/CRM/Contact/Import/Field.php b/CRM/Contact/Import/Field.php index 247ad98633..535e179a4c 100644 --- a/CRM/Contact/Import/Field.php +++ b/CRM/Contact/Import/Field.php @@ -1,7 +1,7 @@ _name = $name; $this->_title = $title; $this->_type = $type; @@ -160,22 +159,22 @@ class CRM_Contact_Import_Field { $this->_value = NULL; } - function resetValue() { + public function resetValue() { $this->_value = NULL; } /** - * the value is in string format. convert the value to the type of this field + * The value is in string format. convert the value to the type of this field * and set the field value with the appropriate type */ - function setValue($value) { + public function setValue($value) { $this->_value = $value; } /** * @return bool */ - function validate() { + public function validate() { // echo $this->_value."===========
"; $message = ''; @@ -193,4 +192,3 @@ class CRM_Contact_Import_Field { } } } -