Merge pull request #11742 from seanmadsen/NFC-CRM_PCP_Form_Event
[civicrm-core.git] / CRM / Contact / Page / View / CustomData.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
8c9251b3 6 | Copyright CiviCRM LLC (c) 2004-2018 |
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
8c9251b3 31 * @copyright CiviCRM LLC (c) 2004-2018
6a488035
TO
32 */
33
34/**
2f854d0b 35 * Page for displaying custom data.
6a488035
TO
36 */
37class CRM_Contact_Page_View_CustomData extends CRM_Core_Page {
38
39 /**
2f854d0b 40 * The id of the object being viewed (note/relationship etc).
6a488035
TO
41 *
42 * @int
6a488035
TO
43 */
44 public $_groupId;
45
46 /**
fe482240 47 * Class constructor.
6a488035
TO
48 *
49 * @return CRM_Contact_Page_View_CustomData
50 */
51 public function __construct() {
52 parent::__construct();
53 }
54
55 /**
fe482240 56 * Add a few specific things to view contact.
6a488035 57 */
00be9182 58 public function preProcess() {
6a488035
TO
59 $this->_contactId = CRM_Utils_Request::retrieve('cid', 'Positive', $this, TRUE);
60 $this->assign('contactId', $this->_contactId);
61
62 // check logged in url permission
63 CRM_Contact_Page_View::checkUserPermission($this);
64
65 $this->_action = CRM_Utils_Request::retrieve('action', 'String', $this, FALSE, 'browse');
66 $this->assign('action', $this->_action);
67
68 $this->_groupId = CRM_Utils_Request::retrieve('gid', 'Positive', $this, TRUE);
69 $this->assign('groupId', $this->_groupId);
e41f4660
PJ
70
71 $this->_multiRecordDisplay = CRM_Utils_Request::retrieve('multiRecordDisplay', 'String', $this, FALSE);
72 $this->_cgcount = CRM_Utils_Request::retrieve('cgcount', 'Positive', $this, FALSE);
73 $this->_recId = CRM_Utils_Request::retrieve('recId', 'Positive', $this, FALSE);
6a488035
TO
74 }
75
76 /**
77 * Run the page.
78 *
79 * This method is called after the page is created. It checks for the
80 * type of action and executes that action.
6a488035 81 */
00be9182 82 public function run() {
6a488035
TO
83 $this->preProcess();
84
85 //set the userContext stack
86 $doneURL = 'civicrm/contact/view';
87 $session = CRM_Core_Session::singleton();
88 $session->pushUserContext(CRM_Utils_System::url($doneURL, 'action=browse&selectedChild=custom_' . $this->_groupId), FALSE);
89
2f854d0b
EM
90 // Get permission detail - view or edit.
91 // use a contact id specific function which gives us much better granularity
87177cd2
DL
92 // CRM-12646
93 $editCustomData = CRM_Contact_BAO_Contact_Permission::allow($this->_contactId, CRM_Core_Permission::EDIT);
6a488035
TO
94 $this->assign('editCustomData', $editCustomData);
95
2f854d0b 96 // Allow to edit own custom data CRM-5518.
6a488035
TO
97 $editOwnCustomData = FALSE;
98 if ($session->get('userID') == $this->_contactId) {
99 $editOwnCustomData = TRUE;
100 }
101 $this->assign('editOwnCustomData', $editOwnCustomData);
102
103 if ($this->_action == CRM_Core_Action::BROWSE) {
e41f4660
PJ
104
105 $displayStyle = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomGroup',
106 $this->_groupId,
107 'style'
108 );
109
eaf756c0 110 if ($this->_multiRecordDisplay != 'single') {
bd470b69 111 $id = "custom_{$this->_groupId}";
9082df1a 112 $tableName = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomGroup', $this->_groupId, 'table_name');
113 $this->ajaxResponse['tabCount'] = CRM_Contact_BAO_Contact::getCountComponent($id, $this->_contactId, $tableName);
eaf756c0
CW
114 }
115
116 if ($displayStyle === 'Tab with table' && $this->_multiRecordDisplay != 'single') {
e41f4660
PJ
117 $ctype = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact',
118 $this->_contactId,
119 'contact_type'
120 );
121
122 $this->assign('displayStyle', 'tableOriented');
123 // here the multi custom data listing code will go
124 $multiRecordFieldListing = TRUE;
125 $page = new CRM_Profile_Page_MultipleRecordFieldsListing();
126 $page->set('contactId', $this->_contactId);
127 $page->set('customGroupId', $this->_groupId);
128 $page->set('action', CRM_Core_Action::BROWSE);
129 $page->set('multiRecordFieldListing', $multiRecordFieldListing);
130 $page->set('pageViewType', 'customDataView');
131 $page->set('contactType', $ctype);
f1eae8d1 132 $page->_headersOnly = TRUE;
e41f4660
PJ
133 $page->run();
134 }
135 else {
9082df1a 136 //Custom Groups Inline
137 $entityType = CRM_Contact_BAO_Contact::getContactType($this->_contactId);
138 $entitySubType = CRM_Contact_BAO_Contact::getContactSubType($this->_contactId);
e41f4660
PJ
139 $recId = NULL;
140 if ($this->_multiRecordDisplay == 'single') {
525faea3
PJ
141 $groupTitle = CRM_Core_BAO_CustomGroup::getTitle($this->_groupId);
142 CRM_Utils_System::setTitle(ts('View %1 Record', array(1 => $groupTitle)));
0b330e6d 143 $groupTree = CRM_Core_BAO_CustomGroup::getTree($entityType, NULL, $this->_contactId,
e1d48b72 144 $this->_groupId, $entitySubType, NULL, TRUE, NULL, FALSE, TRUE, $this->_cgcount
145 );
525faea3 146
e41f4660
PJ
147 $recId = $this->_recId;
148 $this->assign('multiRecordDisplay', $this->_multiRecordDisplay);
149 $this->assign('skipTitle', 1);
150 }
e1d48b72 151 else {
0b330e6d 152 $groupTree = CRM_Core_BAO_CustomGroup::getTree($entityType, NULL, $this->_contactId,
e1d48b72 153 $this->_groupId, $entitySubType
154 );
155 }
e7cf1b90 156 CRM_Core_BAO_CustomGroup::buildCustomDataView($this, $groupTree, FALSE, NULL, NULL, $recId, $this->_contactId);
e41f4660 157 }
6a488035
TO
158 }
159 else {
160
161 $controller = new CRM_Core_Controller_Simple('CRM_Contact_Form_CustomData',
162 ts('Custom Data'),
163 $this->_action
164 );
165 $controller->setEmbedded(TRUE);
166
167 $controller->set('tableId', $this->_contactId);
168 $controller->set('groupId', $this->_groupId);
169 $controller->set('entityType', CRM_Contact_BAO_Contact::getContactType($this->_contactId));
170 $controller->set('entitySubType', CRM_Contact_BAO_Contact::getContactSubType($this->_contactId, ','));
171 $controller->process();
172 $controller->run();
173 }
174 return parent::run();
175 }
96025800 176
6c8f6e67 177}