Ian province abbreviation patch - issue 724
[civicrm-core.git] / CRM / Custom / Import / Form / DataSource.php
CommitLineData
9ff5f6c0
N
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
9ff5f6c0 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
9ff5f6c0
N
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 */
9ff5f6c0
N
27
28/**
29 *
30 * @package CRM
e7112fa7 31 * @copyright CiviCRM LLC (c) 2004-2015
9ff5f6c0
N
32 * $Id$
33 *
34 */
35
36/**
37 * This class gets the name of the file to upload
38 */
81c3812a 39class CRM_Custom_Import_Form_DataSource extends CRM_Import_Form_DataSource {
9ff5f6c0 40
81c3812a 41 const PATH = 'civicrm/import/custom';
66dc6009 42
81c3812a 43 const IMPORT_ENTITY = 'Multi value custom data';
9ff5f6c0 44
e0ef6999
EM
45 /**
46 * @return array
47 */
00be9182 48 public function setDefaultValues() {
9ff5f6c0
N
49 $config = CRM_Core_Config::singleton();
50 $defaults = array(
51 'contactType' => CRM_Import_Parser::CONTACT_INDIVIDUAL,
52 'fieldSeparator' => $config->fieldSeparator,
53 'multipleCustomData' => $this->_id,
54 );
55
56 if ($loadeMapping = $this->get('loadedMapping')) {
57 $this->assign('loadedMapping', $loadeMapping);
58 $defaults['savedMapping'] = $loadeMapping;
59 }
60
61 return $defaults;
62 }
63
64 /**
fe482240 65 * Build the form object.
9ff5f6c0
N
66 *
67 * @return void
9ff5f6c0
N
68 */
69 public function buildQuickForm() {
81c3812a
CW
70 parent::buildQuickForm();
71
9ff5f6c0
N
72 $multipleCustomData = CRM_Core_BAO_CustomGroup::getMultipleFieldGroup();
73 $this->add('select', 'multipleCustomData', ts('Multi-value Custom Data'), array('' => ts('- select -')) + $multipleCustomData, TRUE);
74
81c3812a 75 $this->addContactTypeSelector();
9ff5f6c0
N
76 }
77
78 /**
fe482240 79 * Process the uploaded file.
9ff5f6c0
N
80 *
81 * @return void
9ff5f6c0
N
82 */
83 public function postProcess() {
81c3812a
CW
84 $this->storeFormValues(array(
85 'contactType',
86 'dateFormats',
87 'savedMapping',
88 'multipleCustomData',
89 ));
9ff5f6c0 90
81c3812a 91 $this->submitFileForMapping('CRM_Custom_Import_Parser_Api');
9ff5f6c0 92 }
96025800 93
e0ef6999 94}