commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-old / civicrm / CRM / Profile / Page / View.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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-2015
32 * $Id$
33 *
34 */
35
36 /**
37 * Main page for viewing contact.
38 *
39 */
40 class CRM_Profile_Page_View extends CRM_Core_Page {
41
42 /**
43 * The id of the contact.
44 *
45 * @var int
46 */
47 protected $_id;
48
49 /**
50 * The group id that we are editing.
51 *
52 * @var int
53 */
54 protected $_gid;
55
56 /**
57 * Heart of the viewing process. The runner gets all the meta data for
58 * the contact and calls the appropriate type of page to view.
59 *
60 * @return void
61 */
62 public function preProcess() {
63 $this->_id = CRM_Utils_Request::retrieve('id', 'Positive',
64 $this, FALSE
65 );
66 if (!$this->_id) {
67 $session = CRM_Core_Session::singleton();
68 $this->_id = $session->get('userID');
69 if (!$this->_id) {
70 CRM_Core_Error::fatal(ts('Could not find the required contact id parameter (id=) for viewing a contact record with a Profile.'));
71 }
72 }
73 $this->assign('cid', $this->_id);
74
75 $gids = explode(',', CRM_Utils_Request::retrieve('gid', 'String', CRM_Core_DAO::$_nullObject, FALSE, 0, 'GET'));
76
77 $profileIds = array();
78 if (count($gids) > 1) {
79 if (!empty($gids)) {
80 foreach ($gids as $pfId) {
81 $profileIds[] = CRM_Utils_Type::escape($pfId, 'Positive');
82 }
83 }
84
85 // check if we are rendering mixed profiles
86 if (CRM_Core_BAO_UFGroup::checkForMixProfiles($profileIds)) {
87 CRM_Core_Error::fatal(ts('You cannot combine profiles of multiple types.'));
88 }
89
90 $this->_gid = $profileIds[0];
91 }
92
93 if (!$this->_gid) {
94 $this->_gid = CRM_Utils_Request::retrieve('gid', 'Positive', $this, FALSE, 0, 'GET');
95 }
96
97 $anyContent = TRUE;
98 if ($this->_gid) {
99 $page = new CRM_Profile_Page_Dynamic($this->_id, $this->_gid, 'Profile', FALSE, $profileIds);
100 $profileGroup = array();
101 $profileGroup['title'] = NULL;
102 $profileGroup['content'] = $page->run();
103 if (empty($profileGroup['content'])) {
104 $anyContent = FALSE;
105 }
106 $profileGroups[] = $profileGroup;
107
108 $gidString = $this->_gid;
109 if (!empty($profileIds)) {
110 $gidString = implode(',', $profileIds);
111 }
112
113 $map = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_UFGroup', $this->_gid, 'is_map');
114 if ($map) {
115 $this->assign('mapURL',
116 CRM_Utils_System::url("civicrm/profile/map",
117 "reset=1&pv=1&cid={$this->_id}&gid={$gidString}"
118 )
119 );
120 }
121 if (CRM_Core_Permission::ufGroupValid($this->_gid,
122 CRM_Core_Permission::SEARCH
123 )
124 ) {
125 $this->assign('listingURL',
126 CRM_Utils_System::url("civicrm/profile",
127 "force=1&gid={$gidString}"
128 )
129 );
130 }
131 }
132 else {
133 $ufGroups = CRM_Core_BAO_UFGroup::getModuleUFGroup('Profile');
134
135 $profileGroups = array();
136 foreach ($ufGroups as $groupid => $group) {
137 $page = new CRM_Profile_Page_Dynamic($this->_id, $groupid, 'Profile', FALSE, $profileIds);
138 $profileGroup = array();
139 $profileGroup['title'] = $group['title'];
140 $profileGroup['content'] = $page->run();
141 if (empty($profileGroup['content'])) {
142 $anyContent = FALSE;
143 }
144 $profileGroups[] = $profileGroup;
145 }
146 $this->assign('listingURL',
147 CRM_Utils_System::url("civicrm/profile",
148 "force=1"
149 )
150 );
151 }
152
153 $this->assign('groupID', $this->_gid);
154
155 $this->assign('profileGroups', $profileGroups);
156 $this->assign('recentlyViewed', FALSE);
157
158 // do not set title if there is no content
159 // CRM-6081
160 if (!$anyContent) {
161 CRM_Utils_System::setTitle('');
162 }
163 }
164
165 /**
166 * Build the outcome basing on the CRM_Profile_Page_Dynamic's HTML
167 *
168 * @return void
169 */
170 public function run() {
171 $this->preProcess();
172 return parent::run();
173 }
174
175 /**
176 * @param string $suffix
177 *
178 * @return null|string
179 */
180 public function checkTemplateFileExists($suffix = '') {
181 if ($this->_gid) {
182 $templateFile = "CRM/Profile/Page/{$this->_gid}/View.{$suffix}tpl";
183 $template = CRM_Core_Page::getTemplate();
184 if ($template->template_exists($templateFile)) {
185 return $templateFile;
186 }
187
188 // lets see if we have customized by name
189 $ufGroupName = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_UFGroup', $this->_gid, 'name');
190 if ($ufGroupName) {
191 $templateFile = "CRM/Profile/Page/{$ufGroupName}/View.{$suffix}tpl";
192 if ($template->template_exists($templateFile)) {
193 return $templateFile;
194 }
195 }
196 }
197 return NULL;
198 }
199
200 /**
201 * Use the form name to create the tpl file name.
202 *
203 * @return string
204 */
205 /**
206 * @return string
207 */
208 public function getTemplateFileName() {
209 $fileName = $this->checkTemplateFileExists();
210 return $fileName ? $fileName : parent::getTemplateFileName();
211 }
212
213 /**
214 * Default extra tpl file basically just replaces .tpl with .extra.tpl
215 * i.e. we dont override
216 *
217 * @return string
218 */
219 /**
220 * @return string
221 */
222 public function overrideExtraTemplateFileName() {
223 $fileName = $this->checkTemplateFileExists('extra.');
224 return $fileName ? $fileName : parent::overrideExtraTemplateFileName();
225 }
226
227 }