CRM-21227 Fix test following merge of PR #10435
[civicrm-core.git] / CRM / Admin / Form / RelationshipType.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2017 |
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 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2017
32 */
33
34 /**
35 * This class generates form components for Relationship Type.
36 */
37 class CRM_Admin_Form_RelationshipType extends CRM_Admin_Form {
38
39 /**
40 * Build the form object.
41 */
42 public function buildQuickForm() {
43 parent::buildQuickForm();
44 $this->setPageTitle(ts('Relationship Type'));
45
46 if ($this->_action & CRM_Core_Action::DELETE) {
47 return;
48 }
49
50 $this->applyFilter('__ALL__', 'trim');
51
52 $this->add('text', 'label_a_b', ts('Relationship Label-A to B'),
53 CRM_Core_DAO::getAttribute('CRM_Contact_DAO_RelationshipType', 'label_a_b'), TRUE
54 );
55 $this->addRule('label_a_b', ts('Label already exists in Database.'),
56 'objectExists', array('CRM_Contact_DAO_RelationshipType', $this->_id, 'label_a_b')
57 );
58
59 $this->add('text', 'label_b_a', ts('Relationship Label-B to A'),
60 CRM_Core_DAO::getAttribute('CRM_Contact_DAO_RelationshipType', 'label_b_a')
61 );
62
63 $this->addRule('label_b_a', ts('Label already exists in Database.'),
64 'objectExists', array('CRM_Contact_DAO_RelationshipType', $this->_id, 'label_b_a')
65 );
66
67 $this->add('text', 'description', ts('Description'),
68 CRM_Core_DAO::getAttribute('CRM_Contact_DAO_RelationshipType', 'description')
69 );
70
71 $contactTypes = CRM_Contact_BAO_ContactType::getSelectElements(FALSE, TRUE, '__');
72
73 // add select for contact type
74 $contactTypeA = &$this->add('select', 'contact_types_a', ts('Contact Type A') . ' ',
75 array(
76 '' => ts('All Contacts'),
77 ) + $contactTypes
78 );
79 $contactTypeB = &$this->add('select', 'contact_types_b', ts('Contact Type B') . ' ',
80 array(
81 '' => ts('All Contacts'),
82 ) + $contactTypes
83 );
84
85 $isActive = &$this->add('checkbox', 'is_active', ts('Enabled?'));
86
87 //only selected field should be allow for edit, CRM-4888
88 if ($this->_id &&
89 CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_RelationshipType', $this->_id, 'is_reserved')
90 ) {
91 foreach (array('contactTypeA', 'contactTypeB', 'isActive') as $field) {
92 $$field->freeze();
93 }
94 }
95
96 if ($this->_action & CRM_Core_Action::VIEW) {
97 $this->freeze();
98 }
99
100 $this->assign('relationship_type_id', $this->_id);
101
102 }
103
104 /**
105 * @return array
106 */
107 public function setDefaultValues() {
108 if ($this->_action != CRM_Core_Action::DELETE &&
109 isset($this->_id)
110 ) {
111 $defaults = $params = array();
112 $params = array('id' => $this->_id);
113 $baoName = $this->_BAOName;
114 $baoName::retrieve($params, $defaults);
115 $defaults['contact_types_a'] = CRM_Utils_Array::value('contact_type_a', $defaults);
116 if (!empty($defaults['contact_sub_type_a'])) {
117 $defaults['contact_types_a'] .= '__' . $defaults['contact_sub_type_a'];
118 }
119
120 $defaults['contact_types_b'] = CRM_Utils_Array::value('contact_type_b', $defaults);
121 if (!empty($defaults['contact_sub_type_b'])) {
122 $defaults['contact_types_b'] .= '__' . $defaults['contact_sub_type_b'];
123 }
124 return $defaults;
125 }
126 else {
127 return parent::setDefaultValues();
128 }
129 }
130
131 /**
132 * Process the form submission.
133 */
134 public function postProcess() {
135 if ($this->_action & CRM_Core_Action::DELETE) {
136 CRM_Contact_BAO_RelationshipType::del($this->_id);
137 CRM_Core_Session::setStatus(ts('Selected Relationship type has been deleted.'), ts('Record Deleted'), 'success');
138 }
139 else {
140 $ids = array();
141
142 // store the submitted values in an array
143 $params = $this->exportValues();
144 $params['is_active'] = CRM_Utils_Array::value('is_active', $params, FALSE);
145
146 if ($this->_action & CRM_Core_Action::UPDATE) {
147 $ids['relationshipType'] = $this->_id;
148 }
149
150 $cTypeA = CRM_Utils_System::explode('__',
151 $params['contact_types_a'],
152 2
153 );
154 $cTypeB = CRM_Utils_System::explode('__',
155 $params['contact_types_b'],
156 2
157 );
158
159 $params['contact_type_a'] = $cTypeA[0];
160 $params['contact_type_b'] = $cTypeB[0];
161
162 $params['contact_sub_type_a'] = $cTypeA[1] ? $cTypeA[1] : 'NULL';
163 $params['contact_sub_type_b'] = $cTypeB[1] ? $cTypeB[1] : 'NULL';
164
165 $result = CRM_Contact_BAO_RelationshipType::add($params, $ids);
166
167 $this->ajaxResponse['relationshipType'] = $result->toArray();
168
169 CRM_Core_Session::setStatus(ts('The Relationship Type has been saved.'), ts('Saved'), 'success');
170 }
171 }
172
173 }