Merge pull request #16077 from civicrm/5.21
[civicrm-core.git] / CRM / Admin / Form / Mapping.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
9 +--------------------------------------------------------------------+
10 */
11
12 /**
13 *
14 * @package CRM
15 * @copyright CiviCRM LLC https://civicrm.org/licensing
16 */
17
18 /**
19 * This class generates form components for Mapping.
20 */
21 class CRM_Admin_Form_Mapping extends CRM_Admin_Form {
22
23 /**
24 * Build the form object.
25 */
26 public function preProcess() {
27 parent::preProcess();
28 $mapping = new CRM_Core_DAO_Mapping();
29 $mapping->id = $this->_id;
30 $mapping->find(TRUE);
31 $this->assign('mappingName', $mapping->name);
32 }
33
34 public function buildQuickForm() {
35 parent::buildQuickForm();
36 $this->setPageTitle(ts('Field Mapping'));
37
38 if ($this->_action == CRM_Core_Action::DELETE) {
39 return;
40 }
41 else {
42 $this->applyFilter('__ALL__', 'trim');
43
44 $this->add('text', 'name', ts('Name'),
45 CRM_Core_DAO::getAttribute('CRM_Core_DAO_Mapping', 'name'), TRUE
46 );
47 $this->addRule('name', ts('Name already exists in Database.'), 'objectExists', [
48 'CRM_Core_DAO_Mapping',
49 $this->_id,
50 ]);
51
52 $this->addElement('text', 'description', ts('Description'),
53 CRM_Core_DAO::getAttribute('CRM_Core_DAO_Mapping', 'description')
54 );
55
56 $mappingType = $this->addElement('select', 'mapping_type_id', ts('Mapping Type'), CRM_Core_PseudoConstant::get('CRM_Core_DAO_Mapping', 'mapping_type_id'));
57
58 if ($this->_action == CRM_Core_Action::UPDATE) {
59 $mappingType->freeze();
60 }
61 }
62 }
63
64 /**
65 * @return array
66 */
67 public function setDefaultValues() {
68 $defaults = parent::setDefaultValues();
69 return $defaults;
70 }
71
72 /**
73 * Process the form submission.
74 */
75 public function postProcess() {
76 // store the submitted values in an array
77 $params = $this->exportValues();
78
79 if ($this->_action == CRM_Core_Action::DELETE) {
80 if ($this->_id) {
81 CRM_Core_BAO_Mapping::del($this->_id);
82 CRM_Core_Session::setStatus(ts('Selected mapping has been deleted successfully.'), ts('Deleted'), 'success');
83 }
84 }
85 else {
86 if ($this->_id) {
87 $params['id'] = $this->_id;
88 }
89
90 CRM_Core_BAO_Mapping::add($params);
91 }
92 }
93
94 }