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