Merge pull request #22277 from demeritcowboy/isdir2
[civicrm-core.git] / CRM / Contact / Page / View / Summary.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
bc77d7c0 4 | Copyright CiviCRM LLC. All rights reserved. |
6a488035 5 | |
bc77d7c0
TO
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
6a488035 9 +--------------------------------------------------------------------+
d25dd0ee 10 */
6a488035
TO
11
12/**
13 *
14 * @package CRM
ca5cec67 15 * @copyright CiviCRM LLC https://civicrm.org/licensing
6a488035
TO
16 */
17
18/**
19 * Main page for viewing contact.
6a488035
TO
20 */
21class CRM_Contact_Page_View_Summary extends CRM_Contact_Page_View {
22
23 /**
95cdcc0f 24 * Heart of the viewing process.
6a488035 25 *
95cdcc0f 26 * The runner gets all the meta data for the contact and calls the appropriate type of page to view.
6a488035 27 */
00be9182 28 public function preProcess() {
6a488035
TO
29 parent::preProcess();
30
31 // actions buttom contextMenu
32 $menuItems = CRM_Contact_BAO_Contact::contextMenu($this->_contactId);
33
34 $this->assign('actionsMenuList', $menuItems);
35
36 //retrieve inline custom data
37 $entityType = $this->get('contactType');
38 if ($entitySubType = $this->get('contactSubtype')) {
39 $entitySubType = explode(CRM_Core_DAO::VALUE_SEPARATOR,
40 trim($entitySubType, CRM_Core_DAO::VALUE_SEPARATOR)
41 );
42 }
317103ab
CW
43 // Custom groups with VIEW permission
44 $visibleGroups = CRM_Core_BAO_CustomGroup::getTree($entityType,
0b330e6d 45 NULL,
6a488035
TO
46 $this->_contactId,
47 NULL,
317103ab
CW
48 $entitySubType,
49 NULL,
50 TRUE,
51 NULL,
52 FALSE,
53 CRM_Core_Permission::VIEW
6a488035
TO
54 );
55
317103ab 56 CRM_Core_BAO_CustomGroup::buildCustomDataView($this, $visibleGroups, FALSE, NULL, NULL, NULL, $this->_contactId, CRM_Core_Permission::EDIT);
6a488035
TO
57
58 // also create the form element for the activity links box
59 $controller = new CRM_Core_Controller_Simple(
60 'CRM_Activity_Form_ActivityLinks',
61 ts('Activity Links'),
62 NULL,
63 FALSE,
64 FALSE,
65 TRUE
66 );
67 $controller->setEmbedded(TRUE);
68 $controller->run();
69 }
70
71 /**
95cdcc0f 72 * Heart of the viewing process.
6a488035 73 *
95cdcc0f 74 * The runner gets all the meta data for the contact and calls the appropriate type of page to view.
6a488035 75 */
00be9182 76 public function run() {
6a488035
TO
77 $this->preProcess();
78
79 if ($this->_action & CRM_Core_Action::UPDATE) {
80 $this->edit();
81 }
82 else {
83 $this->view();
84 }
85
86 return parent::run();
87 }
88
89 /**
fe482240 90 * Edit name and address of a contact.
6a488035 91 */
00be9182 92 public function edit() {
6a488035
TO
93 // set the userContext stack
94 $session = CRM_Core_Session::singleton();
95 $url = CRM_Utils_System::url('civicrm/contact/view', 'reset=1&cid=' . $this->_contactId);
96 $session->pushUserContext($url);
97
98 $controller = new CRM_Core_Controller_Simple('CRM_Contact_Form_Contact', ts('Contact Page'), CRM_Core_Action::UPDATE);
99 $controller->setEmbedded(TRUE);
100 $controller->process();
101 return $controller->run();
102 }
103
104 /**
fe482240 105 * View summary details of a contact.
6a488035 106 */
00be9182 107 public function view() {
23223213 108 // Add js for tabs, in-place editing, and jstree for tags
6a488035 109 CRM_Core_Resources::singleton()
96ed17aa 110 ->addScriptFile('civicrm', 'templates/CRM/Contact/Page/View/Summary.js', 2, 'html-header')
0e44568b 111 ->addStyleFile('civicrm', 'css/contactSummary.css', 2, 'html-header')
96ed17aa 112 ->addScriptFile('civicrm', 'templates/CRM/common/TabHeader.js', 1, 'html-header')
89757ec2
EM
113 ->addSetting([
114 'summaryPrint' => ['mode' => $this->_print],
115 'tabSettings' => ['active' => CRM_Utils_Request::retrieve('selectedChild', 'Alphanumeric', $this, FALSE, 'summary')],
116 ]);
46d2738c 117 $this->assign('summaryPrint', $this->_print);
6a488035
TO
118 $session = CRM_Core_Session::singleton();
119 $url = CRM_Utils_System::url('civicrm/contact/view', 'reset=1&cid=' . $this->_contactId);
120 $session->pushUserContext($url);
ed0ca248 121 $this->assignFieldMetadataToTemplate('Contact');
6a488035 122
affcc9d2 123 $params = [];
d38a3b10
EM
124 $defaults = [
125 // Set empty default values for these - they will be overwritten when the contact is
126 // loaded in CRM_Contact_BAO_Contact::retrieve if there are real values
127 // but since we are not using apiV4 they will be left unset if empty.
128 // However, the wind up assigned as smarty variables so we ensure they are set to prevent e-notices
129 // used by ContactInfo.tpl
130 'job_title' => '',
131 'current_employer_id' => '',
132 'nick_name' => '',
133 'legal_name' => '',
134 'source' => '',
135 'sic_code' => '',
136 'external_identifier' => '',
137 // for CommunicationPreferences.tpl
138 'postal_greeting_custom' => '',
139 'email_greeting_custom' => '',
140 'addressee_custom' => '',
141 'communication_style_display' => '',
142 // for Demographics.tpl
143 'age' => ['y' => '', 'm' => ''],
144 'birth_date' => '',
145 // for Website.tpl (the others don't seem to enotice for some reason).
00d5aec1 146 'website' => [],
d38a3b10 147 ];
6a488035
TO
148
149 $params['id'] = $params['contact_id'] = $this->_contactId;
150 $params['noRelationships'] = $params['noNotes'] = $params['noGroups'] = TRUE;
151 $contact = CRM_Contact_BAO_Contact::retrieve($params, $defaults, TRUE);
c3f51c13 152 // Let summary page know if outbound mail is disabled so email links can be built conditionally
aaffa79f 153 $mailingBackend = Civi::settings()->get('mailing_backend');
c3f51c13 154 $this->assign('mailingOutboundOption', $mailingBackend['outBound_option']);
6a488035 155
89757ec2
EM
156 $communicationType = [
157 'phone' => [
6a488035
TO
158 'type' => 'phoneType',
159 'id' => 'phone_type',
365cc343
AS
160 'daoName' => 'CRM_Core_DAO_Phone',
161 'fieldName' => 'phone_type_id',
89757ec2
EM
162 ],
163 'im' => [
6a488035
TO
164 'type' => 'IMProvider',
165 'id' => 'provider',
365cc343
AS
166 'daoName' => 'CRM_Core_DAO_IM',
167 'fieldName' => 'provider_id',
89757ec2
EM
168 ],
169 'website' => [
6a488035
TO
170 'type' => 'websiteType',
171 'id' => 'website_type',
365cc343
AS
172 'daoName' => 'CRM_Core_DAO_Website',
173 'fieldName' => 'website_type_id',
89757ec2
EM
174 ],
175 'address' => ['skip' => TRUE, 'customData' => 1],
176 'email' => ['skip' => TRUE],
177 'openid' => ['skip' => TRUE],
178 ];
6a488035
TO
179
180 foreach ($communicationType as $key => $value) {
a7488080 181 if (!empty($defaults[$key])) {
6a488035 182 foreach ($defaults[$key] as & $val) {
89757ec2 183 CRM_Utils_Array::lookupValue($val, 'location_type', CRM_Core_PseudoConstant::get('CRM_Core_DAO_Address', 'location_type_id', ['labelColumn' => 'display_name']), FALSE);
a7488080 184 if (empty($value['skip'])) {
365cc343 185 $daoName = $value['daoName'];
a810c9da 186 $pseudoConst = $daoName::buildOptions($value['fieldName'], 'get');
6a488035
TO
187 CRM_Utils_Array::lookupValue($val, $value['id'], $pseudoConst, FALSE);
188 }
189 }
190 if (isset($value['customData'])) {
191 foreach ($defaults[$key] as $blockId => $blockVal) {
192 $idValue = $blockVal['id'];
481a74f4 193 if ($key == 'address') {
a7488080 194 if (!empty($blockVal['master_id'])) {
6a488035
TO
195 $idValue = $blockVal['master_id'];
196 }
197 }
317103ab
CW
198 $groupTree = CRM_Core_BAO_CustomGroup::getTree(ucfirst($key), NULL, $idValue, NULL, [],
199 NULL, TRUE, NULL, FALSE, CRM_Core_Permission::VIEW);
6a488035
TO
200 // we setting the prefix to dnc_ below so that we don't overwrite smarty's grouptree var.
201 $defaults[$key][$blockId]['custom'] = CRM_Core_BAO_CustomGroup::buildCustomDataView($this, $groupTree, FALSE, NULL, "dnc_");
202 }
203 // reset template variable since that won't be of any use, and could be misleading
204 $this->assign("dnc_viewCustomData", NULL);
205 }
206 }
207 }
208
a050cd73 209 $defaults['gender_display'] = CRM_Core_PseudoConstant::getLabel('CRM_Contact_DAO_Contact', 'gender_id', $defaults['gender_id'] ?? NULL);
6a488035 210
aa62b355
OB
211 $communicationStyle = CRM_Core_PseudoConstant::get('CRM_Contact_DAO_Contact', 'communication_style_id');
212 if (!empty($communicationStyle)) {
a7488080 213 if (!empty($defaults['communication_style_id'])) {
2cfe2cf4 214 $defaults['communication_style_display'] = $communicationStyle[$defaults['communication_style_id']];
aa62b355
OB
215 }
216 else {
217 // Make sure the field is displayed as long as it is active, even if it is unset for this contact.
218 $defaults['communication_style_display'] = '';
219 }
220 }
221
6a488035
TO
222 // to make contact type label available in the template -
223 $contactType = array_key_exists('contact_sub_type', $defaults) ? $defaults['contact_sub_type'] : $defaults['contact_type'];
224 $defaults['contact_type_label'] = CRM_Contact_BAO_ContactType::contactTypePairs(TRUE, $contactType, ', ');
225
226 // get contact tags
7701d579
EM
227 $defaults['contactTag'] = CRM_Core_BAO_EntityTag::getContactTags($this->_contactId);
228 if (!empty($defaults['contactTag'])) {
d73974ac 229 $defaults['allTags'] = CRM_Core_BAO_Tag::getTagsUsedFor('civicrm_contact', FALSE);
6a488035
TO
230 }
231
232 $defaults['privacy_values'] = CRM_Core_SelectValues::privacy();
233
234 //Show blocks only if they are visible in edit form
63cd4fcf
DL
235 $this->_editOptions = CRM_Core_BAO_Setting::valueOptions(
236 CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
6a488035
TO
237 'contact_edit_options'
238 );
239
240 foreach ($this->_editOptions as $blockName => $value) {
241 $varName = '_show' . $blockName;
242 $this->$varName = $value;
243 $this->assign(substr($varName, 1), $this->$varName);
244 }
245
246 // get contact name of shared contact names
affcc9d2 247 $sharedAddresses = [];
6a488035
TO
248 $shareAddressContactNames = CRM_Contact_BAO_Contact_Utils::getAddressShareContactNames($defaults['address']);
249 foreach ($defaults['address'] as $key => $addressValue) {
a7488080 250 if (!empty($addressValue['master_id']) &&
6a488035
TO
251 !$shareAddressContactNames[$addressValue['master_id']]['is_deleted']
252 ) {
89757ec2 253 $sharedAddresses[$key]['shared_address_display'] = [
6a488035
TO
254 'address' => $addressValue['display'],
255 'name' => $shareAddressContactNames[$addressValue['master_id']]['name'],
89757ec2 256 ];
6a488035
TO
257 }
258 }
259 $this->assign('sharedAddresses', $sharedAddresses);
260
261 //get the current employer name
262 if (CRM_Utils_Array::value('contact_type', $defaults) == 'Individual') {
263 if ($contact->employer_id && $contact->organization_name) {
264 $defaults['current_employer'] = $contact->organization_name;
265 $defaults['current_employer_id'] = $contact->employer_id;
266 }
6a488035 267 }
59f97da6 268
6a488035
TO
269 $this->assign($defaults);
270
271 // FIXME: when we sort out TZ isssues with DATETIME/TIMESTAMP, we can skip next query
272 // also assign the last modifed details
273 $lastModified = CRM_Core_BAO_Log::lastModified($this->_contactId, 'civicrm_contact');
274 $this->assign_by_ref('lastModified', $lastModified);
275
63cd4fcf
DL
276 $this->_viewOptions = CRM_Core_BAO_Setting::valueOptions(
277 CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
278 'contact_view_options',
279 TRUE
6a488035 280 );
63cd4fcf 281
6a488035
TO
282 $changeLog = $this->_viewOptions['log'];
283 $this->assign_by_ref('changeLog', $changeLog);
6a488035 284
9a13600c
CW
285 $this->assign('allTabs', $this->getTabs());
286
287 // hook for contact summary
288 // ignored but needed to prevent warnings
289 $contentPlacement = CRM_Utils_Hook::SUMMARY_BELOW;
290 CRM_Utils_Hook::summary($this->_contactId, $content, $contentPlacement);
291 if ($content) {
292 $this->assign_by_ref('hookContent', $content);
293 $this->assign('hookContentPlacement', $contentPlacement);
294 }
295 }
296
297 /**
298 * @return string
299 */
300 public function getTemplateFileName() {
301 if ($this->_contactId) {
affcc9d2 302 $contactSubtypes = $this->get('contactSubtype') ? explode(CRM_Core_DAO::VALUE_SEPARATOR, $this->get('contactSubtype')) : [];
9a13600c
CW
303
304 // there could be multiple subtypes. We check templates for each of the subtype, and return the first one found.
305 foreach ($contactSubtypes as $csType) {
306 if ($csType) {
307 $templateFile = "CRM/Contact/Page/View/SubType/{$csType}.tpl";
308 $template = CRM_Core_Page::getTemplate();
309 if ($template->template_exists($templateFile)) {
310 return $templateFile;
311 }
312 }
313 }
314 }
315 return parent::getTemplateFileName();
316 }
317
42e86792
CW
318 /**
319 * @return array
320 */
321 public static function basicTabs() {
322 return [
323 [
324 'id' => 'summary',
0ebeb01a 325 'template' => 'CRM/Contact/Page/View/Summary-tab.tpl',
42e86792
CW
326 'title' => ts('Summary'),
327 'weight' => 0,
69078420 328 'icon' => 'crm-i fa-address-card-o',
42e86792
CW
329 ],
330 [
331 'id' => 'activity',
332 'title' => ts('Activities'),
333 'class' => 'livePage',
334 'weight' => 70,
b04115b4 335 'icon' => 'crm-i fa-tasks',
42e86792
CW
336 ],
337 [
338 'id' => 'rel',
339 'title' => ts('Relationships'),
340 'class' => 'livePage',
341 'weight' => 80,
b04115b4 342 'icon' => 'crm-i fa-handshake-o',
42e86792
CW
343 ],
344 [
345 'id' => 'group',
346 'title' => ts('Groups'),
347 'class' => 'ajaxForm',
348 'weight' => 90,
b04115b4 349 'icon' => 'crm-i fa-users',
42e86792
CW
350 ],
351 [
352 'id' => 'note',
353 'title' => ts('Notes'),
354 'class' => 'livePage',
355 'weight' => 100,
b04115b4 356 'icon' => 'crm-i fa-sticky-note-o',
42e86792
CW
357 ],
358 [
359 'id' => 'tag',
360 'title' => ts('Tags'),
361 'weight' => 110,
b04115b4 362 'icon' => 'crm-i fa-tags',
42e86792
CW
363 ],
364 [
365 'id' => 'log',
366 'title' => ts('Change Log'),
367 'weight' => 120,
b04115b4 368 'icon' => 'crm-i fa-history',
42e86792
CW
369 ],
370 ];
371 }
372
9a13600c
CW
373 /**
374 * @return array
375 * @throws \CRM_Core_Exception
376 */
377 public function getTabs() {
378 $allTabs = [];
61d0aa85 379 $getCountParams = [];
9a13600c
CW
380 $weight = 10;
381
382 foreach (CRM_Core_Component::getEnabledComponents() as $name => $component) {
a7488080 383 if (!empty($this->_viewOptions[$name]) &&
63cd4fcf 384 CRM_Core_Permission::access($component->name)
6a488035
TO
385 ) {
386 $elem = $component->registerTab();
387
388 // FIXME: not very elegant, probably needs better approach
389 // allow explicit id, if not defined, use keyword instead
61d0aa85 390 $i = $elem['id'] ?? $component->getKeyword();
6a488035
TO
391 $u = $elem['url'];
392
393 //appending isTest to url for test soft credit CRM-3891.
394 //FIXME: hack ajax url.
58b65bf6 395 $q = "reset=1&force=1&cid={$this->_contactId}";
6a488035 396 if (CRM_Utils_Request::retrieve('isTest', 'Positive', $this)) {
58b65bf6 397 $q .= "&isTest=1";
6a488035 398 }
9a13600c 399 $allTabs[] = [
6a488035
TO
400 'id' => $i,
401 'url' => CRM_Utils_System::url("civicrm/contact/view/$u", $q),
402 'title' => $elem['title'],
403 'weight' => $elem['weight'],
61d0aa85 404 'count' => NULL,
6b754ecb 405 'class' => 'livePage',
b04115b4 406 'icon' => $component->getIcon(),
9a13600c 407 ];
61d0aa85 408 $getCountParams[$i] = [$u, $this->_contactId];
6a488035
TO
409 }
410 }
411
9a13600c
CW
412 // show the tabs only if user has generic access to CiviCRM
413 $accessCiviCRM = CRM_Core_Permission::check('access CiviCRM');
42e86792
CW
414 foreach (self::basicTabs() as $tab) {
415 if ($tab['id'] == 'summary') {
416 $allTabs[] = $tab;
417 }
418 elseif ($accessCiviCRM && !empty($this->_viewOptions[$tab['id']])) {
419 $allTabs[] = $tab + [
e122e55d 420 'url' => CRM_Utils_System::url("civicrm/contact/view/{$tab['id']}", "reset=1&cid={$this->_contactId}"),
61d0aa85 421 'count' => NULL,
9a13600c 422 ];
61d0aa85 423 $getCountParams[$tab['id']] = [$tab['id'], $this->_contactId];
42e86792 424 $weight = $tab['weight'] + 10;
6a488035
TO
425 }
426 }
427
428 // now add all the custom tabs
429 $entityType = $this->get('contactType');
2ede60ec
DL
430 $activeGroups = CRM_Core_BAO_CustomGroup::getActiveGroups(
431 $entityType,
6a488035
TO
432 'civicrm/contact/view/cd',
433 $this->_contactId
434 );
435
436 foreach ($activeGroups as $group) {
437 $id = "custom_{$group['id']}";
9a13600c 438 $allTabs[] = [
6a488035 439 'id' => $id,
58b65bf6 440 'url' => CRM_Utils_System::url($group['path'], $group['query'] . "&selectedChild=$id"),
6a488035
TO
441 'title' => $group['title'],
442 'weight' => $weight,
61d0aa85 443 'count' => NULL,
a97040f5 444 'hideCount' => !$group['is_multiple'],
21dfd5f5 445 'class' => 'livePage',
2af06525 446 'icon' => 'crm-i ' . ($group['icon'] ?: 'fa-gear'),
9a13600c 447 ];
61d0aa85 448 $getCountParams[$id] = [$id, $this->_contactId, $group['table_name']];
6a488035
TO
449 $weight += 10;
450 }
451
98872503 452 // Allow other modules to add or remove tabs
9a13600c 453 $context = ['contact_id' => $this->_contactId];
b7bba1f9 454 CRM_Utils_Hook::tabset('civicrm/contact/view', $allTabs, $context);
6a488035 455
fcae142a
CW
456 $expectedKeys = ['count', 'class', 'template', 'hideCount', 'icon'];
457
61d0aa85 458 foreach ($allTabs as &$tab) {
fcae142a
CW
459 // Ensure tab has all expected keys
460 $tab += array_fill_keys($expectedKeys, NULL);
461 // Get tab counts last to avoid wasting time; if a tab was removed by hook, the count isn't needed.
61d0aa85 462 if (!isset($tab['count']) && isset($getCountParams[$tab['id']])) {
89757ec2
EM
463 $tab['count'] = call_user_func_array([
464 'CRM_Contact_BAO_Contact',
465 'getCountComponent',
466 ], $getCountParams[$tab['id']]);
61d0aa85
CW
467 }
468 }
469
6a488035 470 // now sort the tabs based on weight
9a13600c
CW
471 usort($allTabs, ['CRM_Utils_Sort', 'cmpFunc']);
472 return $allTabs;
6a488035 473 }
96025800 474
6a488035 475}