CRM-16176 - schema + templates update - upgrade script missing
[civicrm-core.git] / CRM / Admin / Form / RelationshipType.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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-2015
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'),
82 ) + $contactTypes
83 );
84 $contactTypeB = &$this->add('select', 'contact_types_b', ts('Contact Type B') . ' ',
85 array(
86 '' => ts('All Contacts'),
87 ) + $contactTypes
88 );
89
90 $isActive = &$this->add('checkbox', 'is_active', ts('Enabled?'));
91
92 //only selected field should be allow for edit, CRM-4888
93 if ($this->_id &&
94 CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_RelationshipType', $this->_id, 'is_reserved')
95 ) {
96 foreach (array('contactTypeA', 'contactTypeB', 'isActive') as $field) {
97 $$field->freeze();
98 }
99 }
100
101 if ($this->_action & CRM_Core_Action::VIEW) {
102 $this->freeze();
103 }
104
105 $this->assign('relationship_type_id', $this->_id);
106
107 }
108
109 /**
110 * @return array
111 */
112 public function setDefaultValues() {
113 if ($this->_action != CRM_Core_Action::DELETE &&
114 isset($this->_id)
115 ) {
116 $defaults = $params = array();
117 $params = array('id' => $this->_id);
118 $baoName = $this->_BAOName;
119 $baoName::retrieve($params, $defaults);
120 $defaults['contact_types_a'] = CRM_Utils_Array::value('contact_type_a', $defaults);
121 if (!empty($defaults['contact_sub_type_a'])) {
122 $defaults['contact_types_a'] .= '__' . $defaults['contact_sub_type_a'];
123 }
124
125 $defaults['contact_types_b'] = $defaults['contact_type_b'];
126 if (!empty($defaults['contact_sub_type_b'])) {
127 $defaults['contact_types_b'] .= '__' . $defaults['contact_sub_type_b'];
128 }
129 return $defaults;
130 }
131 else {
132 return parent::setDefaultValues();
133 }
134 }
135
136 /**
137 * Process the form submission.
138 *
139 *
140 * @return void
141 */
142 public function postProcess() {
143 if ($this->_action & CRM_Core_Action::DELETE) {
144 CRM_Contact_BAO_RelationshipType::del($this->_id);
145 CRM_Core_Session::setStatus(ts('Selected Relationship type has been deleted.'), ts('Record Deleted'), 'success');
146 }
147 else {
148 $params = array();
149 $ids = array();
150
151 // store the submitted values in an array
152 $params = $this->exportValues();
153 $params['is_active'] = CRM_Utils_Array::value('is_active', $params, FALSE);
154
155 if ($this->_action & CRM_Core_Action::UPDATE) {
156 $ids['relationshipType'] = $this->_id;
157 }
158
159 $cTypeA = CRM_Utils_System::explode('__',
160 $params['contact_types_a'],
161 2
162 );
163 $cTypeB = CRM_Utils_System::explode('__',
164 $params['contact_types_b'],
165 2
166 );
167
168 $params['contact_type_a'] = $cTypeA[0];
169 $params['contact_type_b'] = $cTypeB[0];
170
171 $params['contact_sub_type_a'] = $cTypeA[1] ? $cTypeA[1] : 'NULL';
172 $params['contact_sub_type_b'] = $cTypeB[1] ? $cTypeB[1] : 'NULL';
173
174 CRM_Contact_BAO_RelationshipType::add($params, $ids);
175
176 CRM_Core_Session::setStatus(ts('The Relationship Type has been saved.'), ts('Saved'), 'success');
177 }
178 }
179
180 }