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