Merge pull request #5076 from colemanw/Attachment
[civicrm-core.git] / CRM / Contact / Form / RelatedContact.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
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
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035 32 * $Id$
6a488035
TO
33 */
34
35/**
36 * This class generates form components generic to all the contact types.
37 *
38 * It delegates the work to lower level subclasses and integrates the changes
39 * back in. It also uses a lot of functionality with the CRM API's, so any change
40 * made here could potentially affect the API etc. Be careful, be aware, use unit tests.
6a488035
TO
41 */
42class CRM_Contact_Form_RelatedContact extends CRM_Core_Form {
43
44 /**
45 * The contact type of the form
46 *
47 * @var string
48 */
49 protected $_contactType;
50
51 /**
52 * The contact id, used when editing the form
53 *
54 * @var int
55 */
56 public $_contactId;
57
58 /**
100fef9d 59 * Form defaults
6a488035
TO
60 *
61 * @var array
62 */
63 protected $_defaults = array();
64
65 /**
57507ae6 66 * Build all the data structures needed to build the form.
6a488035 67 */
00be9182 68 public function preProcess() {
6a488035
TO
69 // reset action from the session
70 $this->_action = CRM_Utils_Request::retrieve('action', 'String',
71 $this, FALSE, 'update'
72 );
73 $this->_contactId = CRM_Utils_Request::retrieve('cid', 'Positive', $this, TRUE);
74
353ffa53
TO
75 $rcid = CRM_Utils_Request::retrieve('rcid', 'Positive', $this);
76 $rcid = $rcid ? "&id={$rcid}" : '';
6a488035
TO
77 $session = CRM_Core_Session::singleton();
78 $session->pushUserContext(CRM_Utils_System::url('civicrm/user', "reset=1{$rcid}"));
79
80 if ($this->_contactId) {
81 $contact = new CRM_Contact_DAO_Contact();
82 $contact->id = $this->_contactId;
83 if (!$contact->find(TRUE)) {
84 CRM_Core_Error::statusBounce(ts('contact does not exist: %1', array(1 => $this->_contactId)));
85 }
86 $this->_contactType = $contact->contact_type;
87
88 // check for permissions
89 if (!CRM_Contact_BAO_Contact_Permission::allow($this->_contactId, CRM_Core_Permission::EDIT)) {
90 CRM_Core_Error::statusBounce(ts('You do not have the necessary permission to edit this contact.'));
91 }
92
93 list($displayName, $contactImage) = CRM_Contact_BAO_Contact::getDisplayAndImage($this->_contactId);
94 CRM_Utils_System::setTitle($displayName, $contactImage . ' ' . $displayName);
95 }
96 else {
97 CRM_Core_Error::statusBounce(ts('Could not get a contact_id and/or contact_type'));
98 }
99 }
100
101 /**
5c9ff055 102 * Set default values for the form.
6a488035 103 *
5c9ff055
EM
104 * Note that in edit/view mode the default values are retrieved from the
105 * database
6a488035 106 */
00be9182 107 public function setDefaultValues() {
6a488035
TO
108 return $this->_defaults;
109 }
110
111 /**
ee0ce2ef 112 * Build the form object.
6a488035
TO
113 */
114 public function buildQuickForm() {
353ffa53 115 $params = array();
6a488035 116 $params['id'] = $params['contact_id'] = $this->_contactId;
353ffa53 117 $contact = CRM_Contact_BAO_Contact::retrieve($params, $this->_defaults);
6a488035 118
d5f1ee75
DG
119 $countryID = '';
120 $stateID = '';
121 if (!empty($this->_defaults['address'][1])) {
122 $countryID = CRM_Utils_Array::value('country_id',
123 $this->_defaults['address'][1]
124 );
125 $stateID = CRM_Utils_Array::value('state_province_id',
126 $this->_defaults['address'][1]
2efcf0c2 127 );
d5f1ee75 128 }
6a488035
TO
129 CRM_Contact_BAO_Contact_Utils::buildOnBehalfForm($this,
130 $this->_contactType,
131 $countryID,
132 $stateID,
0949913f 133 ts('Contact Information')
6a488035
TO
134 );
135
136 $this->addButtons(array(
353ffa53
TO
137 array(
138 'type' => 'next',
139 'name' => ts('Save'),
140 'isDefault' => TRUE,
141 ),
142 array(
143 'type' => 'cancel',
144 'name' => ts('Cancel'),
145 ),
146 ));
6a488035
TO
147 }
148
149 /**
150 * Form submission of new/edit contact is processed.
6a488035
TO
151 */
152 public function postProcess() {
153 // store the submitted values in an array
154 $params = $this->controller->exportValues($this->_name);
155
156 $locType = CRM_Core_BAO_LocationType::getDefault();
157 foreach (array(
353ffa53
TO
158 'phone',
159 'email',
db7de9c1 160 'address',
353ffa53 161 ) as $locFld) {
6a488035
TO
162 if (!empty($this->_defaults[$locFld]) && $this->_defaults[$locFld][1]['location_type_id']) {
163 $params[$locFld][1]['is_primary'] = $this->_defaults[$locFld][1]['is_primary'];
164 $params[$locFld][1]['location_type_id'] = $this->_defaults[$locFld][1]['location_type_id'];
165 }
166 else {
167 $params[$locFld][1]['is_primary'] = 1;
168 $params[$locFld][1]['location_type_id'] = $locType->id;
169 }
170 }
171
172 $params['contact_type'] = $this->_contactType;
8394480e 173 //CRM-14904
481a74f4 174 if (isset($this->_defaults['contact_sub_type'])) {
8394480e
BS
175 $params['contact_sub_type'] = $this->_defaults['contact_sub_type'];
176 }
6a488035
TO
177 $params['contact_id'] = $this->_contactId;
178
179 $contact = CRM_Contact_BAO_Contact::create($params, TRUE);
180
181 // set status message.
182 if ($this->_contactId) {
183 $message = ts('%1 has been updated.', array(1 => $contact->display_name));
184 }
185 else {
186 $message = ts('%1 has been created.', array(1 => $contact->display_name));
187 }
188 CRM_Core_Session::setStatus($message, ts('Contact Saved'), 'success');
189 }
96025800 190
6a488035 191}