Merge remote-tracking branch 'upstream/4.5' into 4.5-master-2015-02-25-11-27-40
[civicrm-core.git] / CRM / Event / Page / Tab.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
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 class CRM_Event_Page_Tab extends CRM_Core_Page {
36
37 public $_permission = NULL;
38 public $_contactId = NULL;
39
40 /**
41 * called when action is browse.
42 */
43 public function browse() {
44 $controller = new CRM_Core_Controller_Simple(
45 'CRM_Event_Form_Search',
46 ts('Events'),
47 $this->_action
48 );
49 $controller->setEmbedded(TRUE);
50 $controller->reset();
51 $controller->set('cid', $this->_contactId);
52 $controller->set('context', 'participant');
53 $controller->process();
54 $controller->run();
55
56 if ($this->_contactId) {
57 $displayName = CRM_Contact_BAO_Contact::displayName($this->_contactId);
58 $this->assign('displayName', $displayName);
59 $this->ajaxResponse['tabCount'] = CRM_Contact_BAO_Contact::getCountComponent('participant', $this->_contactId);
60 // Refresh other tabs with related data
61 $this->ajaxResponse['updateTabs'] = array(
62 '#tab_activity' => CRM_Contact_BAO_Contact::getCountComponent('activity', $this->_contactId),
63 );
64 if (CRM_Core_Permission::access('CiviContribute')) {
65 $this->ajaxResponse['updateTabs']['#tab_contribute'] = CRM_Contact_BAO_Contact::getCountComponent('contribution', $this->_contactId);
66 }
67 }
68 }
69
70 /**
71 * called when action is view.
72 *
73 * @return null
74 */
75 public function view() {
76 // build associated contributions
77 $this->associatedContribution();
78
79 $controller = new CRM_Core_Controller_Simple(
80 'CRM_Event_Form_ParticipantView',
81 ts('View Participant'),
82 $this->_action
83 );
84 $controller->setEmbedded(TRUE);
85 $controller->set('id', $this->_id);
86 $controller->set('cid', $this->_contactId);
87
88 return $controller->run();
89 }
90
91 /**
92 * called when action is update or new.
93 *
94 * @return null
95 */
96 public function edit() {
97 // set https for offline cc transaction
98 $mode = CRM_Utils_Request::retrieve('mode', 'String', $this);
99 if ($mode == 'test' || $mode == 'live') {
100 CRM_Utils_System::redirectToSSL();
101 }
102
103 if ($this->_action != CRM_Core_Action::ADD) {
104 // get associated contributions only on edit/delete
105 $this->associatedContribution();
106 }
107
108 $controller = new CRM_Core_Controller_Simple(
109 'CRM_Event_Form_Participant',
110 'Create Participation',
111 $this->_action
112 );
113
114 $controller->setEmbedded(TRUE);
115 $controller->set('id', $this->_id);
116 $controller->set('cid', $this->_contactId);
117
118 return $controller->run();
119 }
120
121 public function preProcess() {
122 $context = CRM_Utils_Request::retrieve('context', 'String', $this);
123 $this->_action = CRM_Utils_Request::retrieve('action', 'String', $this, FALSE, 'browse');
124 $this->_id = CRM_Utils_Request::retrieve('id', 'Positive', $this);
125
126 if ($context == 'standalone') {
127 $this->_action = CRM_Core_Action::ADD;
128 }
129 else {
130 $this->_contactId = CRM_Utils_Request::retrieve('cid', 'Positive', $this, TRUE);
131 $this->assign('contactId', $this->_contactId);
132
133 // check logged in url permission
134 CRM_Contact_Page_View::checkUserPermission($this);
135 }
136
137 $this->assign('action', $this->_action);
138
139 if ($this->_permission == CRM_Core_Permission::EDIT && !CRM_Core_Permission::check('edit event participants')) {
140 // demote to view since user does not have edit event participants rights
141 $this->_permission = CRM_Core_Permission::VIEW;
142 $this->assign('permission', 'view');
143 }
144 }
145
146 /**
147 * the main function that is called when the page loads, it decides the which action has to be taken for the page.
148 *
149 * @return null
150 */
151 public function run() {
152 $this->preProcess();
153
154 // check if we can process credit card registration
155 $this->assign('newCredit', CRM_Core_Config::isEnabledBackOfficeCreditCardPayments());
156
157 // Only show credit card registration button if user has CiviContribute permission
158 if (CRM_Core_Permission::access('CiviContribute')) {
159 $this->assign('accessContribution', TRUE);
160 }
161 else {
162 $this->assign('accessContribution', FALSE);
163 }
164
165 $this->setContext();
166
167 if ($this->_action & CRM_Core_Action::VIEW) {
168 $this->view();
169 }
170 elseif ($this->_action & (CRM_Core_Action::UPDATE |
171 CRM_Core_Action::ADD |
172 CRM_Core_Action::DELETE
173 )
174 ) {
175 $this->edit();
176 }
177 else {
178 $this->browse();
179 }
180
181 return parent::run();
182 }
183
184 public function setContext() {
185 $context = CRM_Utils_Request::retrieve('context',
186 'String', $this, FALSE, 'search'
187 );
188 $compContext = CRM_Utils_Request::retrieve('compContext',
189 'String', $this
190 );
191
192 $searchContext = CRM_Utils_Request::retrieve('searchContext', 'String', $this);
193
194 $qfKey = CRM_Utils_Request::retrieve('key', 'String', $this);
195
196 //validate the qfKey
197 if (!CRM_Utils_Rule::qfKey($qfKey)) {
198 $qfKey = NULL;
199 }
200
201 switch ($context) {
202 case 'dashboard':
203 $url = CRM_Utils_System::url('civicrm/event', 'reset=1');
204 break;
205
206 case 'search':
207 $urlParams = 'force=1';
208 if ($qfKey) {
209 $urlParams .= "&qfKey=$qfKey";
210 }
211 $this->assign('searchKey', $qfKey);
212
213 if ($compContext == 'advanced') {
214 $url = CRM_Utils_System::url('civicrm/contact/search/advanced', $urlParams);
215 }
216 elseif ($searchContext) {
217 $url = CRM_Utils_System::url("civicrm/$searchContext/search", $urlParams);
218 }
219 else {
220 $url = CRM_Utils_System::url('civicrm/event/search', $urlParams);
221 }
222 break;
223
224 case 'user':
225 $url = CRM_Utils_System::url('civicrm/user', 'reset=1');
226 break;
227
228 case 'participant':
229 $url = CRM_Utils_System::url('civicrm/contact/view',
230 "reset=1&force=1&cid={$this->_contactId}&selectedChild=participant"
231 );
232 break;
233
234 case 'home':
235 $url = CRM_Utils_System::url('civicrm/dashboard', 'force=1');
236 break;
237
238 case 'activity':
239 $url = CRM_Utils_System::url('civicrm/contact/view',
240 "reset=1&force=1&cid={$this->_contactId}&selectedChild=activity"
241 );
242 break;
243
244 case 'standalone':
245 $url = CRM_Utils_System::url('civicrm/dashboard', 'reset=1');
246 break;
247
248 case 'fulltext':
249 $keyName = '&qfKey';
250 $urlParams = 'force=1';
251 $urlString = 'civicrm/contact/search/custom';
252 if ($this->_action == CRM_Core_Action::UPDATE) {
253 if ($this->_contactId) {
254 $urlParams .= '&cid=' . $this->_contactId;
255 }
256 $keyName = '&key';
257 $urlParams .= '&context=fulltext&action=view';
258 $urlString = 'civicrm/contact/view/participant';
259 }
260 if ($qfKey) {
261 $urlParams .= "$keyName=$qfKey";
262 }
263 $this->assign('searchKey', $qfKey);
264 $url = CRM_Utils_System::url($urlString, $urlParams);
265 break;
266
267 default:
268 $cid = NULL;
269 if ($this->_contactId) {
270 $cid = '&cid=' . $this->_contactId;
271 }
272 $url = CRM_Utils_System::url('civicrm/event/search',
273 'force=1' . $cid
274 );
275 break;
276 }
277 $session = CRM_Core_Session::singleton();
278 $session->pushUserContext($url);
279 }
280
281 /**
282 * used for the to show the associated
283 * contribution for the participant
284 */
285 public function associatedContribution() {
286 if (CRM_Core_Permission::access('CiviContribute')) {
287 $this->assign('accessContribution', TRUE);
288 $controller = new CRM_Core_Controller_Simple(
289 'CRM_Contribute_Form_Search',
290 ts('Contributions'),
291 NULL,
292 FALSE, FALSE, TRUE
293 );
294 $controller->setEmbedded(TRUE);
295 $controller->set('force', 1);
296 $controller->set('cid', $this->_contactId);
297 $controller->set('participantId', $this->_id);
298 $controller->set('context', 'contribution');
299 $controller->process();
300 $controller->run();
301 }
302 else {
303 $this->assign('accessContribution', FALSE);
304 }
305 }
306
307 }