Update Copywrite year to be 2019
[civicrm-core.git] / CRM / Admin / Form / Mapping.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
6b83d5bd 31 * @copyright CiviCRM LLC (c) 2004-2019
6a488035
TO
32 */
33
34/**
ce064e4f 35 * This class generates form components for Mapping.
6a488035
TO
36 */
37class CRM_Admin_Form_Mapping extends CRM_Admin_Form {
38
39 /**
eceb18cc 40 * Build the form object.
6a488035
TO
41 */
42 public function preProcess() {
43 parent::preProcess();
44 $mapping = new CRM_Core_DAO_Mapping();
45 $mapping->id = $this->_id;
46 $mapping->find(TRUE);
47 $this->assign('mappingName', $mapping->name);
48 }
49
50 public function buildQuickForm() {
51 parent::buildQuickForm();
e2046b33
CW
52 $this->setPageTitle(ts('Field Mapping'));
53
6a488035
TO
54 if ($this->_action == CRM_Core_Action::DELETE) {
55 return;
56 }
57 else {
58 $this->applyFilter('__ALL__', 'trim');
59
60 $this->add('text', 'name', ts('Name'),
61 CRM_Core_DAO::getAttribute('CRM_Core_DAO_Mapping', 'name'), TRUE
62 );
353ffa53
TO
63 $this->addRule('name', ts('Name already exists in Database.'), 'objectExists', array(
64 'CRM_Core_DAO_Mapping',
87a890cc 65 $this->_id,
353ffa53 66 ));
6a488035
TO
67
68 $this->addElement('text', 'description', ts('Description'),
69 CRM_Core_DAO::getAttribute('CRM_Core_DAO_Mapping', 'description')
70 );
71
cbf48754 72 $mappingType = $this->addElement('select', 'mapping_type_id', ts('Mapping Type'), CRM_Core_PseudoConstant::get('CRM_Core_DAO_Mapping', 'mapping_type_id'));
6a488035
TO
73
74 if ($this->_action == CRM_Core_Action::UPDATE) {
75 $mappingType->freeze();
76 }
77 }
78 }
79
e0ef6999
EM
80 /**
81 * @return array
82 */
00be9182 83 public function setDefaultValues() {
6a488035
TO
84 $defaults = parent::setDefaultValues();
85 return $defaults;
86 }
87
88 /**
eceb18cc 89 * Process the form submission.
6a488035
TO
90 */
91 public function postProcess() {
92 // store the submitted values in an array
93 $params = $this->exportValues();
94
95 if ($this->_action == CRM_Core_Action::DELETE) {
96 if ($this->_id) {
97 CRM_Core_BAO_Mapping::del($this->_id);
10d067c6 98 CRM_Core_Session::setStatus(ts('Selected mapping has been deleted successfully.'), ts('Deleted'), 'success');
6a488035
TO
99 }
100 }
101 else {
102 if ($this->_id) {
103 $params['id'] = $this->_id;
104 }
105
106 CRM_Core_BAO_Mapping::add($params);
107 }
108 }
e2046b33 109
6a488035 110}