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