Whitespace changes only.
[civicrm-core.git] / CRM / Contact / Page / View / UserDashBoard.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
232624b1 4 | CiviCRM version 4.4 |
6a488035
TO
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 * CMS User Dashboard
38 * This class is used to build User Dashboard
39 *
40 */
41class CRM_Contact_Page_View_UserDashBoard extends CRM_Core_Page {
42 public $_contactId = NULL;
43
44 /*
45 * always show public groups
46 */
47
48 public $_onlyPublicGroups = TRUE;
49
50 public $_edit = TRUE;
51
52 /**
53 * The action links that we need to display for the browse screen
54 *
55 * @var array
56 * @static
57 */
430ae6dd
TO
58 static $_links = NULL;
59
60 function __construct() {
6a488035
TO
61 parent::__construct();
62
63 $check = CRM_Core_Permission::check('access Contact Dashboard');
64
65 if (!$check) {
66 CRM_Utils_System::redirect(CRM_Utils_System::url('civicrm/dashboard', 'reset=1'));
67 break;
68 }
69
70 $this->_contactId = CRM_Utils_Request::retrieve('id', 'Positive', $this);
71
72 $session = CRM_Core_Session::singleton();
73 $userID = $session->get('userID');
74
75 if (!$this->_contactId) {
76 $this->_contactId = $userID;
77 }
78 elseif ($this->_contactId != $userID) {
79 if (!CRM_Contact_BAO_Contact_Permission::allow($this->_contactId, CRM_Core_Permission::VIEW)) {
80 CRM_Core_Error::fatal(ts('You do not have permission to view this contact'));
81 }
82 if (!CRM_Contact_BAO_Contact_Permission::allow($this->_contactId, CRM_Core_Permission::EDIT)) {
83 $this->_edit = FALSE;
84 }
85 }
86 }
87
88 /*
89 * Heart of the viewing process. The runner gets all the meta data for
90 * the contact and calls the appropriate type of page to view.
91 *
92 * @return void
93 * @access public
94 *
95 */
96 function preProcess() {
97 if (!$this->_contactId) {
98 CRM_Core_Error::fatal(ts('You must be logged in to view this page.'));
99 }
100
101 list($displayName, $contactImage) = CRM_Contact_BAO_Contact::getDisplayAndImage($this->_contactId);
102
103 $this->set('displayName', $displayName);
104 $this->set('contactImage', $contactImage);
105
106 CRM_Utils_System::setTitle(ts('Dashboard - %1', array(1 => $displayName)));
107
108 $this->assign('recentlyViewed', FALSE);
109 }
110
111 /**
112 * Function to build user dashboard
113 *
114 * @return none
115 * @access public
116 */
117 function buildUserDashBoard() {
118 //build component selectors
119 $dashboardElements = array();
120 $config = CRM_Core_Config::singleton();
121
122 $this->_userOptions = CRM_Core_BAO_Setting::valueOptions(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
123 'user_dashboard_options'
124 );
125
126 $components = CRM_Core_Component::getEnabledComponents();
127 $this->assign('contactId', $this->_contactId);
128 foreach ($components as $name => $component) {
129 $elem = $component->getUserDashboardElement();
130 if (!$elem) {
131 continue;
132 }
133
134 if (CRM_Utils_Array::value($name, $this->_userOptions) &&
135 (CRM_Core_Permission::access($component->name) ||
136 CRM_Core_Permission::check($elem['perm'][0])
137 )
138 ) {
139
140 $userDashboard = $component->getUserDashboardObject();
8aac22c8 141 $dashboardElements[] = array('templatePath' => $userDashboard->getHookedTemplateFileName(),
6a488035
TO
142 'sectionTitle' => $elem['title'],
143 'weight' => $elem['weight'],
144 );
145 $userDashboard->run();
146 }
147 }
148
149 if (CRM_Utils_Array::value('Permissioned Orgs', $this->_userOptions)) {
150 $dashboardElements[] = array(
151 'templatePath' => 'CRM/Contact/Page/View/Relationship.tpl',
152 'sectionTitle' => ts('Your Contacts / Organizations'),
153 'weight' => 40,
154 );
155
156 $links = self::links();
157 $currentRelationships = CRM_Contact_BAO_Relationship::getRelationship($this->_contactId,
158 CRM_Contact_BAO_Relationship::CURRENT,
159 0, 0, 0,
160 $links, NULL, TRUE
161 );
162 $this->assign('currentRelationships', $currentRelationships);
163 }
164
165 if (CRM_Utils_Array::value('PCP', $this->_userOptions)) {
166 $dashboardElements[] = array(
167 'templatePath' => 'CRM/Contribute/Page/PcpUserDashboard.tpl',
168 'sectionTitle' => ts('Personal Campaign Pages'),
169 'weight' => 40,
170 );
171 list($pcpBlock, $pcpInfo) = CRM_PCP_BAO_PCP::getPcpDashboardInfo($this->_contactId);
172 $this->assign('pcpBlock', $pcpBlock);
173 $this->assign('pcpInfo', $pcpInfo);
174 }
175
176 if (CRM_Utils_Array::value('Assigned Activities', $this->_userOptions)) {
177 // Assigned Activities section
178 $dashboardElements[] = array(
179 'templatePath' => 'CRM/Activity/Page/UserDashboard.tpl',
180 'sectionTitle' => ts('Your Assigned Activities'),
181 'weight' => 5,
182 );
183 $userDashboard = new CRM_Activity_Page_UserDashboard;
184 $userDashboard->run();
185 }
186
187 usort($dashboardElements, array('CRM_Utils_Sort', 'cmpFunc'));
188 $this->assign('dashboardElements', $dashboardElements);
189
190 if (CRM_Utils_Array::value('Groups', $this->_userOptions)) {
191 $this->assign('showGroup', TRUE);
192 //build group selector
193 $gContact = new CRM_Contact_Page_View_UserDashBoard_GroupContact();
194 $gContact->run();
195 }
196 else {
197 $this->assign('showGroup', FALSE);
198 }
199 }
200
201 /**
202 * perform actions and display for user dashboard
203 *
204 * @return none
205 *
206 * @access public
207 */
208 function run() {
209 $this->preProcess();
210 $this->buildUserDashBoard();
211 return parent::run();
212 }
213
214 /**
215 * Get action links
216 *
217 * @return array (reference) of action links
218 * @static
219 */
220 static
221 function &links() {
222 if (!(self::$_links)) {
223 $disableExtra = ts('Are you sure you want to disable this relationship?');
224
225 self::$_links = array(
226 CRM_Core_Action::UPDATE => array(
227 'name' => ts('Edit Contact Information'),
228 'url' => 'civicrm/contact/relatedcontact',
229 'qs' => 'action=update&reset=1&cid=%%cbid%%&rcid=%%cid%%',
230 'title' => ts('Edit Relationship'),
231 ),
232 CRM_Core_Action::VIEW => array(
233 'name' => ts('Dashboard'),
234 'url' => 'civicrm/user',
235 'qs' => 'reset=1&id=%%cbid%%',
236 'title' => ts('View Relationship'),
237 ),
238 );
239
240
241 if (CRM_Core_Permission::check('access CiviCRM')) {
242 self::$_links = array_merge(self::$_links, array(
243 CRM_Core_Action::DISABLE => array(
244 'name' => ts('Disable'),
245 'url' => 'civicrm/contact/view/rel',
246 'qs' => 'action=disable&reset=1&cid=%%cid%%&id=%%id%%&rtype=%%rtype%%&selectedChild=rel%%&context=dashboard',
247 'extra' => 'onclick = "return confirm(\'' . $disableExtra . '\');"',
248 'title' => ts('Disable Relationship'),
249 ),
250 ));
251 }
252 }
253
254 // call the hook so we can modify it
255 CRM_Utils_Hook::links('view.contact.userDashBoard',
256 'Contact',
257 CRM_Core_DAO::$_nullObject,
258 self::$_links,
259 CRM_Core_DAO::$_nullObject
260 );
261 return self::$_links;
262 }
263}
264