Merge pull request #16574 from civicrm/5.23
[civicrm-core.git] / CRM / Contact / Page / Inline / Phone.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
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 |
9 +--------------------------------------------------------------------+
10 */
11
12 /**
13 *
14 * @package CRM
15 * @copyright CiviCRM LLC https://civicrm.org/licensing
16 */
17
18 /**
19 * Dummy page for details of Phone.
20 */
21 class CRM_Contact_Page_Inline_Phone extends CRM_Core_Page {
22
23 /**
24 * Run the page.
25 *
26 * This method is called after the page is created.
27 *
28 * @throws \CRM_Core_Exception
29 */
30 public function run() {
31 // get the emails for this contact
32 $contactId = CRM_Utils_Request::retrieve('cid', 'Positive', CRM_Core_DAO::$_nullObject, TRUE);
33
34 $locationTypes = CRM_Core_PseudoConstant::get('CRM_Core_DAO_Address', 'location_type_id', ['labelColumn' => 'display_name']);
35 $phoneTypes = CRM_Core_PseudoConstant::get('CRM_Core_DAO_Phone', 'phone_type_id');
36
37 $entityBlock = ['contact_id' => $contactId];
38 $phones = CRM_Core_BAO_Phone::getValues($entityBlock);
39 if (!empty($phones)) {
40 foreach ($phones as $key => & $value) {
41 $value['location_type'] = $locationTypes[$value['location_type_id']];
42 $value['phone_type'] = $phoneTypes[$value['phone_type_id']];
43 }
44 }
45
46 $contact = new CRM_Contact_BAO_Contact();
47 $contact->id = $contactId;
48 $contact->find(TRUE);
49 $privacy = [];
50 foreach (CRM_Contact_BAO_Contact::$_commPrefs as $name) {
51 if (isset($contact->$name)) {
52 $privacy[$name] = $contact->$name;
53 }
54 }
55
56 $this->assign('contactId', $contactId);
57 $this->assign('phone', $phones);
58 $this->assign('privacy', $privacy);
59
60 // check logged in user permission
61 CRM_Contact_Page_View::checkUserPermission($this, $contactId);
62
63 // finally call parent
64 parent::run();
65 }
66
67 }