Skip to content
Snippets Groups Projects
Commit 0d5a3f9d authored by Jon goldberg - Linux laptop's avatar Jon goldberg - Linux laptop
Browse files

fixes CRM-13050

----------------------------------------
* CRM-13050: cli.class.php doesn't import/export custom fields with multi-select values
  http://issues.civicrm.org/jira/browse/CRM-13050
parent 4647f343
No related branches found
No related tags found
No related merge requests found
......@@ -298,6 +298,13 @@ class civicrm_cli_csv_exporter extends civicrm_cli {
fputcsv($out, $columns, $this->separator, '"');
$first = false;
}
//handle values returned as arrays (i.e. custom fields that allow multiple selections) by inserting a control character
foreach ($row as &$field) {
if(is_array($field)) {
//convert to string
$field = implode($field,CRM_Core_DAO::VALUE_SEPARATOR) . CRM_Core_DAO::VALUE_SEPARATOR;
}
}
fputcsv($out, $row, $this->separator, '"');
}
fclose($out);
......@@ -359,6 +366,11 @@ class civicrm_cli_csv_file extends civicrm_cli {
function convertLine($data) {
$params = array();
foreach ($this->header as $i => $field) {
//split any multiselect data, denoted with CRM_Core_DAO::VALUE_SEPARATOR
if (strpos($data[$i], CRM_Core_DAO::VALUE_SEPARATOR) !== FALSE) {
$data[$i] = explode(CRM_Core_DAO::VALUE_SEPARATOR,$data[$i]);
$data[$i] = array_combine($data[$i], $data[$i]);
}
$params[$field] = $data[$i];
}
$params['version'] = 3;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment