Merge pull request #15365 from samuelsov/userdashboard
[civicrm-core.git] / CRM / Contact / Form / Inline.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2019 |
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-2019
32 */
33
34 /**
35 * Parent class for inline contact forms.
36 */
37 abstract class CRM_Contact_Form_Inline extends CRM_Core_Form {
38
39 /**
40 * Id of the contact that is being edited
41 * @var int
42 */
43 public $_contactId;
44
45 /**
46 * Type of contact being edited
47 * @var string
48 */
49 public $_contactType;
50
51 /**
52 * Sub type of contact being edited
53 * @var string
54 */
55 public $_contactSubType;
56
57 /**
58 * Explicitly declare the form context.
59 */
60 public function getDefaultContext() {
61 return 'create';
62 }
63
64 /**
65 * Explicitly declare the entity api name.
66 */
67 public function getDefaultEntity() {
68 return 'Contact';
69 }
70
71 /**
72 * Common preprocess: fetch contact ID and contact type
73 */
74 public function preProcess() {
75 $this->_contactId = CRM_Utils_Request::retrieve('cid', 'Positive', $this, TRUE, NULL, $_REQUEST);
76 $this->assign('contactId', $this->_contactId);
77
78 // get contact type and subtype
79 if (empty($this->_contactType)) {
80 $contactTypeInfo = CRM_Contact_BAO_Contact::getContactTypes($this->_contactId);
81 $this->_contactType = $contactTypeInfo[0];
82
83 // check if subtype is set
84 if (isset($contactTypeInfo[1])) {
85 // unset contact type which is 0th element
86 unset($contactTypeInfo[0]);
87 $this->_contactSubType = $contactTypeInfo;
88 }
89 }
90
91 $this->assign('contactType', $this->_contactType);
92
93 $this->setAction(CRM_Core_Action::UPDATE);
94 }
95
96 /**
97 * Common form elements.
98 */
99 public function buildQuickForm() {
100 CRM_Contact_Form_Inline_Lock::buildQuickForm($this, $this->_contactId);
101
102 $buttons = [
103 [
104 'type' => 'upload',
105 'name' => ts('Save'),
106 'isDefault' => TRUE,
107 ],
108 [
109 'type' => 'cancel',
110 'name' => ts('Cancel'),
111 ],
112 ];
113 $this->addButtons($buttons);
114 }
115
116 /**
117 * Override default cancel action.
118 */
119 public function cancelAction() {
120 $response = ['status' => 'cancel'];
121 CRM_Utils_JSON::output($response);
122 }
123
124 /**
125 * Set defaults for the form.
126 *
127 * @return array
128 */
129 public function setDefaultValues() {
130 $defaults = $params = [];
131 $params['id'] = $this->_contactId;
132
133 CRM_Contact_BAO_Contact::getValues($params, $defaults);
134
135 return $defaults;
136 }
137
138 /**
139 * Add entry to log table.
140 */
141 protected function log() {
142 CRM_Core_BAO_Log::register($this->_contactId,
143 'civicrm_contact',
144 $this->_contactId
145 );
146 }
147
148 /**
149 * Common function for all inline contact edit forms.
150 *
151 * Prepares ajaxResponse
152 */
153 protected function response() {
154 $this->ajaxResponse = array_merge(
155 self::renderFooter($this->_contactId),
156 $this->ajaxResponse,
157 CRM_Contact_Form_Inline_Lock::getResponse($this->_contactId)
158 );
159 // Note: Post hooks will be called by CRM_Core_Form::mainProcess
160 }
161
162 /**
163 * Render change log footer markup for a contact and supply count.
164 *
165 * Needed for refreshing the contact summary screen
166 *
167 * @param int $cid
168 * @param bool $includeCount
169 * @return array
170 */
171 public static function renderFooter($cid, $includeCount = TRUE) {
172 // Load change log footer from template.
173 $smarty = CRM_Core_Smarty::singleton();
174 $smarty->assign('contactId', $cid);
175 $smarty->assign('external_identifier', CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $cid, 'external_identifier'));
176 $smarty->assign('lastModified', CRM_Core_BAO_Log::lastModified($cid, 'civicrm_contact'));
177 $viewOptions = CRM_Core_BAO_Setting::valueOptions(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
178 'contact_view_options', TRUE
179 );
180 $smarty->assign('changeLog', $viewOptions['log']);
181 $ret = ['markup' => $smarty->fetch('CRM/common/contactFooter.tpl')];
182 if ($includeCount) {
183 $ret['count'] = CRM_Contact_BAO_Contact::getCountComponent('log', $cid);
184 }
185 return ['changeLog' => $ret];
186 }
187
188 }