X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FMember%2FImport%2FForm%2FMapField.php;h=c884a115be70ce32e17f968f88d50456bbe80591;hb=fd31fa4c65b766d62df21f578772960955322576;hp=1159c47907e46728ee7d042c0d88e6917fe87aa4;hpb=a05662ef0fbe0620783ce99b80a38a45db01fec0;p=civicrm-core.git diff --git a/CRM/Member/Import/Form/MapField.php b/CRM/Member/Import/Form/MapField.php index 1159c47907..c884a115be 100644 --- a/CRM/Member/Import/Form/MapField.php +++ b/CRM/Member/Import/Form/MapField.php @@ -1,9 +1,9 @@ $re) { - // Skip empty key/patterns - if (!$key || !$re || strlen("$re") < 5) { - continue; - } - - // Scan through the headerPatterns defined in the schema for a match - if (preg_match($re, $header)) { - $this->_fieldUsed[$key] = TRUE; - return $key; - } - } - return ''; - } - - /** - * Guess at the field names given the data and patterns from the schema - * - * @param patterns - * @param index - * - * @return string - * @access public - */ - public function defaultFromData(&$patterns, $index) { - $best = ''; - $bestHits = 0; - $n = count($this->_dataValues); - - foreach ($patterns as $key => $re) { - // Skip empty key/patterns - if (!$key || !$re || strlen("$re") < 5) { - continue; - } - - // if ($this->_fieldUsed[$key]) - // continue; - - /* Take a vote over the preview data set */ - - $hits = 0; - for ($i = 0; $i < $n; $i++) { - if (preg_match($re, $this->_dataValues[$i][$index])) { - $hits++; - } - } - - if ($hits > $bestHits) { - $bestHits = $hits; - $best = $key; - } - } - - if ($best != '') { - $this->_fieldUsed[$best] = TRUE; - } - return $best; - } /** * Function to set variables up before form is built @@ -179,7 +64,7 @@ class CRM_Member_Import_Form_MapField extends CRM_Core_Form { $this->_dataValues = $this->get('dataValues'); $this->assign('dataValues', $this->_dataValues); - $skipColumnHeader = $this->controller->exportValue('UploadFile', 'skipColumnHeader'); + $skipColumnHeader = $this->controller->exportValue('DataSource', 'skipColumnHeader'); $this->_onDuplicate = $this->get('onDuplicate', isset($onDuplicate) ? $onDuplicate : ""); $highlightedFields = array(); @@ -417,6 +302,9 @@ class CRM_Member_Import_Form_MapField extends CRM_Core_Form { * * @param array $fields posted values of the form * + * @param $files + * @param $self + * * @return array list of errors to be posted back to the form * @static * @access public @@ -488,7 +376,7 @@ class CRM_Member_Import_Form_MapField extends CRM_Core_Form { } - if (CRM_Utils_Array::value('saveMapping', $fields)) { + if (!empty($fields['saveMapping'])) { $nameField = CRM_Utils_Array::value('saveMappingName', $fields); if (empty($nameField)) { $errors['saveMappingName'] = ts('Name is required to save Import Mapping'); @@ -530,8 +418,8 @@ class CRM_Member_Import_Form_MapField extends CRM_Core_Form { return; } - $fileName = $this->controller->exportValue('UploadFile', 'uploadFile'); - $skipColumnHeader = $this->controller->exportValue('UploadFile', 'skipColumnHeader'); + $fileName = $this->controller->exportValue('DataSource', 'uploadFile'); + $skipColumnHeader = $this->controller->exportValue('DataSource', 'skipColumnHeader'); $config = CRM_Core_Config::singleton(); $seperator = $config->fieldSeparator; @@ -547,14 +435,14 @@ class CRM_Member_Import_Form_MapField extends CRM_Core_Form { $mapper[$i] = $this->_mapperFields[$mapperKeys[$i][0]]; $mapperKeysMain[$i] = $mapperKeys[$i][0]; - if (CRM_Utils_Array::value(1, $mapperKeys[$i]) && is_numeric($mapperKeys[$i][1])) { + if (!empty($mapperKeys[$i][1]) && is_numeric($mapperKeys[$i][1])) { $mapperLocType[$i] = $mapperKeys[$i][1]; } else { $mapperLocType[$i] = NULL; } - if (CRM_Utils_Array::value(2, $mapperKeys[$i]) && (!is_numeric($mapperKeys[$i][2]))) { + if (!empty($mapperKeys[$i][2]) && (!is_numeric($mapperKeys[$i][2]))) { $mapperPhoneType[$i] = $mapperKeys[$i][2]; } else { @@ -565,11 +453,11 @@ class CRM_Member_Import_Form_MapField extends CRM_Core_Form { $this->set('mapper', $mapper); // store mapping Id to display it in the preview page - if (CRM_Utils_Array::value('mappingId', $params)) { + if (!empty($params['mappingId'])) { $this->set('loadMappingId', $params['mappingId']); } //Updating Mapping Records - if (CRM_Utils_Array::value('updateMapping', $params)) { + if (!empty($params['updateMapping'])) { $mappingFields = new CRM_Core_DAO_MappingField(); $mappingFields->mapping_id = $params['mappingId']; $mappingFields->find(); @@ -597,7 +485,7 @@ class CRM_Member_Import_Form_MapField extends CRM_Core_Form { } //Saving Mapping Details and Records - if (CRM_Utils_Array::value('saveMapping', $params)) { + if (!empty($params['saveMapping'])) { $mappingParams = array( 'name' => $params['saveMappingName'], 'description' => $params['saveMappingDesc'], @@ -631,15 +519,5 @@ class CRM_Member_Import_Form_MapField extends CRM_Core_Form { // add all the necessary variables to the form $parser->set($this); } - - /** - * Return a descriptive name for the page, used in wizard header - * - * @return string - * @access public - */ - public function getTitle() { - return ts('Match Fields'); - } }