send most action links thru hook_civicrm_links
[civicrm-core.git] / CRM / PCP / Page / PCPInfo.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 * PCP Info Page - Summary about the PCP
38 */
39 class CRM_PCP_Page_PCPInfo extends CRM_Core_Page {
40 public $_component;
41
42 /**
43 * Run the page.
44 *
45 * This method is called after the page is created. It checks for the
46 * type of action and executes that action.
47 * Finally it calls the parent's run method.
48 *
49 * @return void
50 * @access public
51 *
52 */
53 function run() {
54 $session = CRM_Core_Session::singleton();
55 $config = CRM_Core_Config::singleton();
56 $permissionCheck = FALSE;
57 $statusMessage = '';
58 if ($config->userFramework != 'Joomla') {
59 $permissionCheck = CRM_Core_Permission::check('administer CiviCRM');
60 }
61 //get the pcp id.
62 $this->_id = CRM_Utils_Request::retrieve('id', 'Positive', $this, TRUE);
63
64 $action = CRM_Utils_Request::retrieve('action', 'String', $this, FALSE);
65
66 $prms = array('id' => $this->_id);
67
68 CRM_Core_DAO::commonRetrieve('CRM_PCP_DAO_PCP', $prms, $pcpInfo);
69 $this->_component = $pcpInfo['page_type'];
70
71 if (empty($pcpInfo)) {
72 $statusMessage = ts('The personal campaign page you requested is currently unavailable.');
73 CRM_Core_Error::statusBounce($statusMessage,
74 $config->userFrameworkBaseURL
75 );
76 }
77
78 CRM_Utils_System::setTitle($pcpInfo['title']);
79 $this->assign('pcp', $pcpInfo);
80
81 $pcpStatus = CRM_Core_OptionGroup::values("pcp_status");
82 $approvedId = CRM_Core_OptionGroup::getValue('pcp_status', 'Approved', 'name');
83
84 // check if PCP is created by anonymous user
85 $anonymousPCP = CRM_Utils_Request::retrieve('ap', 'Boolean', $this);
86 if ($anonymousPCP) {
87 $loginURL = $config->userSystem->getLoginURL();
88 $anonMessage = ts('Once you\'ve received your new account welcome email, you can <a href=%1>click here</a> to login and promote your campaign page.', array(1 => $loginURL));
89 CRM_Core_Session::setStatus($anonMessage, ts('Success'), 'success');
90 }
91 else {
92 $statusMessage = ts('The personal campaign page you requested is currently unavailable. However you can still support the campaign by making a contribution here.');
93 }
94
95 $pcpBlock = new CRM_PCP_DAO_PCPBlock();
96 $pcpBlock->entity_table = CRM_PCP_BAO_PCP::getPcpEntityTable($pcpInfo['page_type']);
97 $pcpBlock->entity_id = $pcpInfo['page_id'];
98 $pcpBlock->find(TRUE);
99
100 // Redirect back to source page in case of error.
101 if ($pcpInfo['page_type'] == 'contribute') {
102 $urlBase = 'civicrm/contribute/transact';
103 }
104 elseif ($pcpInfo['page_type'] == 'event') {
105 $urlBase = 'civicrm/event/register';
106 }
107
108 if ($pcpInfo['status_id'] != $approvedId || !$pcpInfo['is_active']) {
109 if ($pcpInfo['contact_id'] != $session->get('userID') && !$permissionCheck) {
110 CRM_Core_Error::statusBounce($statusMessage, CRM_Utils_System::url($urlBase,
111 "reset=1&id=" . $pcpInfo['page_id'],
112 FALSE, NULL, FALSE, TRUE
113 ));
114 }
115 }
116 else {
117 $getStatus = CRM_PCP_BAO_PCP::getStatus($this->_id, $this->_component);
118 if (!$getStatus) {
119 // PCP not enabled for this contribution page. Forward everyone to source page
120 CRM_Core_Error::statusBounce($statusMessage, CRM_Utils_System::url($urlBase,
121 "reset=1&id=" . $pcpInfo['page_id'],
122 FALSE, NULL, FALSE, TRUE
123 ));
124 }
125 }
126
127 $default = array();
128
129 if ($pcpBlock->target_entity_type == 'contribute') {
130 $urlBase = 'civicrm/contribute/transact';
131 }
132 elseif ($pcpBlock->target_entity_type == 'event') {
133 $urlBase = 'civicrm/event/register';
134 }
135
136 if ($pcpBlock->entity_table == 'civicrm_event') {
137 $page_class = 'CRM_Event_DAO_Event';
138 $this->assign('pageName', CRM_Event_PseudoConstant::event($pcpInfo['page_id']));
139 CRM_Core_DAO::commonRetrieveAll($page_class, 'id',
140 $pcpInfo['page_id'], $default, array('start_date', 'end_date', 'registration_start_date', 'registration_end_date')
141 );
142 }
143 elseif ($pcpBlock->entity_table == 'civicrm_contribution_page') {
144 $page_class = 'CRM_Contribute_DAO_ContributionPage';
145 $this->assign('pageName', CRM_Contribute_PseudoConstant::contributionPage($pcpInfo['page_id'], TRUE));
146 CRM_Core_DAO::commonRetrieveAll($page_class, 'id',
147 $pcpInfo['page_id'], $default, array('start_date', 'end_date')
148 );
149 }
150
151 $pageInfo = $default[$pcpInfo['page_id']];
152
153 if ($pcpInfo['contact_id'] == $session->get('userID')) {
154 $owner = $pageInfo;
155 $owner['status'] = CRM_Utils_Array::value($pcpInfo['status_id'], $pcpStatus);
156
157 $this->assign('owner', $owner);
158
159 $link = CRM_PCP_BAO_PCP::pcpLinks();
160
161 $hints = array(
162 CRM_Core_Action::UPDATE => ts('Change the content and appearance of your page'),
163 CRM_Core_Action::DETACH => ts('Send emails inviting your friends to support your campaign!'),
164 CRM_Core_Action::BROWSE => ts('Update your personal contact information'),
165 CRM_Core_Action::DISABLE => ts('De-activate the page (you can re-activate it later)'),
166 CRM_Core_Action::ENABLE => ts('Activate the page (you can de-activate it later)'),
167 CRM_Core_Action::DELETE => ts('Remove the page (this cannot be undone!)'),
168 );
169
170 $replace = array(
171 'id' => $this->_id,
172 'block' => $pcpBlock->id,
173 'pageComponent' => $this->_component,
174 );
175
176 if (!$pcpBlock->is_tellfriend_enabled || CRM_Utils_Array::value('status_id', $pcpInfo) != $approvedId) {
177 unset($link['all'][CRM_Core_Action::DETACH]);
178 }
179
180 switch ($pcpInfo['is_active']) {
181 case 1:
182 unset($link['all'][CRM_Core_Action::ENABLE]);
183 break;
184
185 case 0:
186 unset($link['all'][CRM_Core_Action::DISABLE]);
187 break;
188 }
189
190 $this->assign('links', $link['all']);
191 $this->assign('hints', $hints);
192 $this->assign('replace', $replace);
193 }
194
195 $honor = CRM_PCP_BAO_PCP::honorRoll($this->_id);
196
197 if ($fileInfo = reset(CRM_Core_BAO_File::getEntityFile('civicrm_pcp', $this->_id))) {
198 $fileId = $fileInfo['fileID'];
199 $image = '<img src="' . CRM_Utils_System::url('civicrm/file',
200 "reset=1&id=$fileId&eid={$this->_id}"
201 ) . '" />';
202 $this->assign('image', $image);
203 }
204
205 $totalAmount = CRM_PCP_BAO_PCP::thermoMeter($this->_id);
206 $achieved = round($totalAmount / $pcpInfo['goal_amount'] * 100, 2);
207
208
209 if ($pcpBlock->is_active == 1) {
210 $linkTextUrl = CRM_Utils_System::url('civicrm/contribute/campaign',
211 "action=add&reset=1&pageId={$pcpInfo['page_id']}&component={$pcpInfo['page_type']}",
212 TRUE, NULL, TRUE,
213 TRUE
214 );
215 $this->assign('linkTextUrl', $linkTextUrl);
216 $this->assign('linkText', $pcpBlock->link_text);
217 }
218
219 $this->assign('honor', $honor);
220 $this->assign('total', $totalAmount ? $totalAmount : '0.0');
221 $this->assign('achieved', $achieved <= 100 ? $achieved : 100);
222
223 if ($achieved <= 100) {
224 $this->assign('remaining', 100 - $achieved);
225 }
226 // make sure that we are between contribution page start and end dates OR registration start date and end dates if they are set
227 if ($pcpBlock->entity_table == 'civicrm_event') {
228 $startDate = CRM_Utils_Date::unixTime(CRM_Utils_Array::value('registration_start_date', $pageInfo));
229 $endDate = CRM_Utils_Date::unixTime(CRM_Utils_Array::value('registration_end_date', $pageInfo));
230 }
231 else {
232 $startDate = CRM_Utils_Date::unixTime(CRM_Utils_Array::value('start_date', $pageInfo));
233 $endDate = CRM_Utils_Date::unixTime(CRM_Utils_Array::value('end_date', $pageInfo));
234 }
235
236
237 $now = time();
238 $validDate = TRUE;
239 if ($startDate && $startDate >= $now) {
240 $validDate = FALSE;
241 }
242 if ($endDate && $endDate < $now) {
243 $validDate = FALSE;
244 }
245
246 $this->assign('validDate', $validDate);
247
248 // form parent page url
249 if ($action == CRM_Core_Action::PREVIEW) {
250 $parentUrl = CRM_Utils_System::url($urlBase,
251 "id={$pcpInfo['page_id']}&reset=1&action=preview",
252 TRUE, NULL, TRUE,
253 TRUE
254 );
255 }
256 else {
257 $parentUrl = CRM_Utils_System::url($urlBase,
258 "id={$pcpInfo['page_id']}&reset=1",
259 TRUE, NULL, TRUE,
260 TRUE
261 );
262 }
263
264 $this->assign('parentURL', $parentUrl);
265
266
267 if ($validDate) {
268
269 $contributionText = ts('Contribute Now');
270 if (CRM_Utils_Array::value('donate_link_text', $pcpInfo)) {
271 $contributionText = $pcpInfo['donate_link_text'];
272 }
273
274 $this->assign('contributionText', $contributionText);
275
276 // we always generate urls for the front end in joomla
277 if ($action == CRM_Core_Action::PREVIEW) {
278 $url = CRM_Utils_System::url($urlBase,
279 "id=" . $pcpBlock->target_entity_id . "&pcpId={$this->_id}&reset=1&action=preview",
280 TRUE, NULL, TRUE,
281 TRUE
282 );
283 }
284 else {
285 $url = CRM_Utils_System::url($urlBase,
286 "id=" . $pcpBlock->target_entity_id . "&pcpId={$this->_id}&reset=1",
287 TRUE, NULL, TRUE,
288 TRUE
289 );
290 }
291 $this->assign('contributeURL', $url);
292 }
293
294 // we do not want to display recently viewed items, so turn off
295 $this->assign('displayRecent', FALSE);
296
297 $single = $permission = FALSE;
298 switch ($action) {
299 case CRM_Core_Action::BROWSE:
300 $subForm = 'PCPAccount';
301 $form = "CRM_PCP_Form_$subForm";
302 $single = TRUE;
303 break;
304
305 case CRM_Core_Action::UPDATE:
306 $subForm = 'Campaign';
307 $form = "CRM_PCP_Form_$subForm";
308 $single = TRUE;
309 break;
310 }
311
312 $userID = $session->get('userID');
313 //make sure the user has "administer CiviCRM" permission
314 //OR has created the PCP
315 if (CRM_Core_Permission::check('administer CiviCRM') ||
316 ($userID && (CRM_Core_DAO::getFieldValue('CRM_PCP_DAO_PCP', $this->_id, 'contact_id') == $userID))
317 ) {
318 $permission = TRUE;
319 }
320 if ($single && $permission) {
321 $controller = new CRM_Core_Controller_Simple($form, $subForm, $action);
322 $controller->set('id', $this->_id);
323 $controller->set('single', TRUE);
324 $controller->process();
325 return $controller->run();
326 }
327 $session->pushUserContext(CRM_Utils_System::url(CRM_Utils_System::currentPath(), 'reset=1&id=' . $this->_id));
328 parent::run();
329 }
330
331 function getTemplateFileName() {
332 if ($this->_id) {
333 $templateFile = "CRM/PCP/Page/{$this->_id}/PCPInfo.tpl";
334 $template = &CRM_Core_Page::getTemplate();
335 if ($template->template_exists($templateFile)) {
336 return $templateFile;
337 }
338 }
339 return parent::getTemplateFileName();
340 }
341 }
342