preliminary tidy up
[civicrm-core.git] / CRM / Event / Page / ManageEvent.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * Page for displaying list of events
38 */
39class CRM_Event_Page_ManageEvent extends CRM_Core_Page {
40
41 /**
fe482240 42 * The action links that we need to display for the browse screen.
6a488035
TO
43 *
44 * @var array
6a488035
TO
45 */
46 static $_actionLinks = NULL;
47
48 static $_links = NULL;
49
d7d7d5ab 50 static $_tabLinks = NULL;
51
6a488035
TO
52 protected $_pager = NULL;
53
54 protected $_sortByCharacter;
55
56 protected $_isTemplate = FALSE;
57
58 /**
fe482240 59 * Get action Links.
6a488035 60 *
a6c01b45
CW
61 * @return array
62 * (reference) of action links
6a488035 63 */
00be9182 64 public function &links() {
6a488035
TO
65 if (!(self::$_actionLinks)) {
66 // helper variable for nicer formatting
67 $copyExtra = ts('Are you sure you want to make a copy of this Event?');
68 $deleteExtra = ts('Are you sure you want to delete this Event?');
69
70 self::$_actionLinks = array(
71 CRM_Core_Action::DISABLE => array(
72 'name' => ts('Disable'),
4d17a233 73 'ref' => 'crm-enable-disable',
6a488035
TO
74 'title' => ts('Disable Event'),
75 ),
76 CRM_Core_Action::ENABLE => array(
77 'name' => ts('Enable'),
4d17a233 78 'ref' => 'crm-enable-disable',
6a488035
TO
79 'title' => ts('Enable Event'),
80 ),
81 CRM_Core_Action::DELETE => array(
82 'name' => ts('Delete'),
83 'url' => CRM_Utils_System::currentPath(),
84 'qs' => 'action=delete&id=%%id%%',
85 'extra' => 'onclick = "return confirm(\'' . $deleteExtra . '\');"',
86 'title' => ts('Delete Event'),
87 ),
88 CRM_Core_Action::COPY => array(
89 'name' => ts('Copy'),
90 'url' => CRM_Utils_System::currentPath(),
91 'qs' => 'reset=1&action=copy&id=%%id%%',
92 'extra' => 'onclick = "return confirm(\'' . $copyExtra . '\');"',
93 'title' => ts('Copy Event'),
21dfd5f5 94 ),
6a488035
TO
95 );
96 }
97 return self::$_actionLinks;
98 }
99
d7d7d5ab 100 /**
fe482240 101 * Get tab Links for events.
d7d7d5ab 102 *
dd244018
EM
103 * @param $enableCart
104 *
a6c01b45
CW
105 * @return array
106 * (reference) of tab links
d7d7d5ab 107 */
00be9182 108 public static function &tabs($enableCart) {
a2ff2331 109 $cacheKey = $enableCart ? 1 : 0;
d7d7d5ab 110 if (!(self::$_tabLinks)) {
a2ff2331
TO
111 self::$_tabLinks = array();
112 }
113 if (!isset(self::$_tabLinks[$cacheKey])) {
608e6658 114 self::$_tabLinks[$cacheKey]['settings']
115 = array(
d7d7d5ab 116 'title' => ts('Info and Settings'),
117 'url' => 'civicrm/event/manage/settings',
21dfd5f5 118 'field' => 'id',
209989e3 119 );
608e6658 120 self::$_tabLinks[$cacheKey]['location']
121 = array(
d7d7d5ab 122 'title' => ts('Location'),
123 'url' => 'civicrm/event/manage/location',
a215a5b0 124 'field' => 'loc_block_id',
209989e3 125 );
126
608e6658 127 self::$_tabLinks[$cacheKey]['fee']
128 = array(
d7d7d5ab 129 'title' => ts('Fees'),
130 'url' => 'civicrm/event/manage/fee',
131 'field' => 'is_monetary',
209989e3 132 );
608e6658 133 self::$_tabLinks[$cacheKey]['registration']
134 = array(
d7d7d5ab 135 'title' => ts('Online Registration'),
136 'url' => 'civicrm/event/manage/registration',
137 'field' => 'is_online_registration',
209989e3 138 );
608e6658 139
209989e3 140 if (CRM_Core_Permission::check('administer CiviCRM')) {
608e6658 141 self::$_tabLinks[$cacheKey]['reminder']
142 = array(
353ffa53
TO
143 'title' => ts('Schedule Reminders'),
144 'url' => 'civicrm/event/manage/reminder',
145 'field' => 'reminder',
146 );
209989e3 147 }
608e6658 148 self::$_tabLinks[$cacheKey]['conference']
149 = array(
d7d7d5ab 150 'title' => ts('Conference Slots'),
151 'url' => 'civicrm/event/manage/conference',
152 'field' => 'slot_label_id',
209989e3 153 );
608e6658 154 self::$_tabLinks[$cacheKey]['friend']
155 = array(
d7d7d5ab 156 'title' => ts('Tell a Friend'),
157 'url' => 'civicrm/event/manage/friend',
158 'field' => 'friend',
209989e3 159 );
608e6658 160 self::$_tabLinks[$cacheKey]['pcp']
161 = array(
d7d7d5ab 162 'title' => ts('Personal Campaign Pages'),
163 'url' => 'civicrm/event/manage/pcp',
164 'field' => 'is_pcp_enabled',
209989e3 165 );
608e6658 166 self::$_tabLinks[$cacheKey]['repeat']
167 = array(
6063a2f1 168 'title' => ts('Repeat'),
169 'url' => 'civicrm/event/manage/repeat',
72c67af6 170 'field' => 'is_repeating_event',
6063a2f1 171 );
d7d7d5ab 172 }
173
174 if (!$enableCart) {
a2ff2331 175 unset(self::$_tabLinks[$cacheKey]['conference']);
d7d7d5ab 176 }
177
a2ff2331
TO
178 CRM_Utils_Hook::tabset('civicrm/event/manage', self::$_tabLinks[$cacheKey], array());
179 return self::$_tabLinks[$cacheKey];
d7d7d5ab 180 }
181
6a488035
TO
182 /**
183 * Run the page.
184 *
185 * This method is called after the page is created. It checks for the
186 * type of action and executes that action.
187 * Finally it calls the parent's run method.
188 *
189 * @return void
6a488035 190 */
00be9182 191 public function run() {
6a488035
TO
192 // get the requested action
193 $action = CRM_Utils_Request::retrieve('action', 'String',
194 // default to 'browse'
195 $this, FALSE, 'browse'
196 );
197
198 // assign vars to templates
199 $this->assign('action', $action);
200 $id = CRM_Utils_Request::retrieve('id', 'Positive',
201 $this, FALSE, 0, 'REQUEST'
202 );
203
204 // figure out whether we’re handling an event or an event template
205 if ($id) {
206 $this->_isTemplate = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Event', $id, 'is_template');
207 }
208 elseif ($action & CRM_Core_Action::ADD) {
209 $this->_isTemplate = CRM_Utils_Request::retrieve('is_template', 'Boolean', $this);
210 }
211
212 if (!$this->_isTemplate && $id) {
353ffa53
TO
213 $breadCrumb = array(
214 array(
6ea503d4 215 'title' => ts('Manage Events'),
6a488035 216 'url' => CRM_Utils_System::url(CRM_Utils_System::currentPath(), 'reset=1'),
a130e045 217 ),
353ffa53 218 );
6a488035
TO
219 CRM_Utils_System::appendBreadCrumb($breadCrumb);
220 }
221
222 // what action to take ?
223 if ($action & CRM_Core_Action::DELETE) {
224 $session = CRM_Core_Session::singleton();
225 $session->pushUserContext(CRM_Utils_System::url(CRM_Utils_System::currentPath(), 'reset=1&action=browse'));
226 $controller = new CRM_Core_Controller_Simple('CRM_Event_Form_ManageEvent_Delete',
227 'Delete Event',
228 $action
229 );
230 $controller->set('id', $id);
231 $controller->process();
232 return $controller->run();
233 }
234 elseif ($action & CRM_Core_Action::COPY) {
235 $this->copy();
236 }
237
238 // finally browse the custom groups
239 $this->browse();
240
241 // parent run
242 return parent::run();
243 }
244
245 /**
fe482240 246 * Browse all events.
6a488035
TO
247 *
248 * @return void
249 */
00be9182 250 public function browse() {
bfd83a87 251 $this->assign('includeWysiwygEditor', TRUE);
6a488035
TO
252 $this->_sortByCharacter = CRM_Utils_Request::retrieve('sortByCharacter',
253 'String',
254 $this
255 );
256 $createdId = CRM_Utils_Request::retrieve('cid', 'Positive', $this, FALSE, 0);
257 if (strtolower($this->_sortByCharacter) == 'all' ||
258 !empty($_POST)
259 ) {
260 $this->_sortByCharacter = '';
261 $this->set('sortByCharacter', '');
262 }
263
264 $this->_force = $this->_searchResult = NULL;
265
266 $this->search();
267
6a488035
TO
268 $params = array();
269 $this->_force = CRM_Utils_Request::retrieve('force', 'Boolean',
270 $this, FALSE
271 );
272 $this->_searchResult = CRM_Utils_Request::retrieve('searchResult', 'Boolean', $this);
273
274 $whereClause = $this->whereClause($params, FALSE, $this->_force);
275 $this->pagerAToZ($whereClause, $params);
276
277 $params = array();
278 $whereClause = $this->whereClause($params, TRUE, $this->_force);
279 // because is_template != 1 would be to simple
280 $whereClause .= ' AND (is_template = 0 OR is_template IS NULL)';
281
282 $this->pager($whereClause, $params);
283
284 list($offset, $rowCount) = $this->_pager->getOffsetAndRowCount();
285
286 // get all custom groups sorted by weight
287 $manageEvent = array();
288
289 $query = "
290 SELECT *
291 FROM civicrm_event
292 WHERE $whereClause
293ORDER BY start_date desc
294 LIMIT $offset, $rowCount";
295
296 $dao = CRM_Core_DAO::executeQuery($query, $params, TRUE, 'CRM_Event_DAO_Event');
297 $permissions = CRM_Event_BAO_Event::checkPermission();
298
299 //get all campaigns.
300 $allCampaigns = CRM_Campaign_BAO_Campaign::getCampaigns(NULL, NULL, FALSE, FALSE, FALSE, TRUE);
301
302 // get the list of active event pcps
303 $eventPCPS = array();
304
a130e045 305 $pcpDao = new CRM_PCP_DAO_PCPBlock();
6a488035
TO
306 $pcpDao->entity_table = 'civicrm_event';
307 $pcpDao->find();
308
309 while ($pcpDao->fetch()) {
310 $eventPCPS[$pcpDao->entity_id] = $pcpDao->entity_id;
311 }
d7d7d5ab 312 // check if we're in shopping cart mode for events
313 $enableCart = CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::EVENT_PREFERENCES_NAME,
314 'enable_cart'
315 );
316 $this->assign('eventCartEnabled', $enableCart);
317 $mappingID = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_ActionMapping', 'civicrm_event', 'id', 'entity_value');
14c89ba8 318 $eventType = CRM_Core_OptionGroup::values('event_type');
6a488035
TO
319 while ($dao->fetch()) {
320 if (in_array($dao->id, $permissions[CRM_Core_Permission::VIEW])) {
321 $manageEvent[$dao->id] = array();
d8786c71 322 $isRecurringEvent = CRM_Core_BAO_RecurringEntity::getParentFor($dao->id, 'civicrm_event');
62933949 323 $manageEvent[$dao->id]['repeat'] = '';
d8786c71 324 if ($isRecurringEvent) {
325 if ($dao->id == $isRecurringEvent) {
326 $manageEvent[$dao->id]['repeat'] = 'Recurring Event - (Parent)';
a50a97b8 327 }
328 else {
d8786c71 329 $manageEvent[$dao->id]['repeat'] = 'Recurring Event - (Child)';
62933949 330 }
331 }
6a488035
TO
332 CRM_Core_DAO::storeValues($dao, $manageEvent[$dao->id]);
333
334 // form all action links
335 $action = array_sum(array_keys($this->links()));
336
337 if ($dao->is_active) {
338 $action -= CRM_Core_Action::ENABLE;
339 }
340 else {
341 $action -= CRM_Core_Action::DISABLE;
342 }
343
344 if (!in_array($dao->id, $permissions[CRM_Core_Permission::DELETE])) {
345 $action -= CRM_Core_Action::DELETE;
346 }
347 if (!in_array($dao->id, $permissions[CRM_Core_Permission::EDIT])) {
348 $action -= CRM_Core_Action::UPDATE;
349 }
350
351 $manageEvent[$dao->id]['action'] = CRM_Core_Action::formLink(self::links(),
352 $action,
353 array('id' => $dao->id),
354 ts('more'),
87dab4a4
AH
355 TRUE,
356 'event.manage.list',
357 'Event',
358 $dao->id
6a488035
TO
359 );
360
361 $params = array(
362 'entity_id' => $dao->id,
363 'entity_table' => 'civicrm_event',
364 'is_active' => 1,
365 );
366
367 $defaults['location'] = CRM_Core_BAO_Location::getValues($params, TRUE);
368
369 $manageEvent[$dao->id]['friend'] = CRM_Friend_BAO_Friend::getValues($params);
370
371 if (isset($defaults['location']['address'][1]['city'])) {
372 $manageEvent[$dao->id]['city'] = $defaults['location']['address'][1]['city'];
373 }
374 if (isset($defaults['location']['address'][1]['state_province_id'])) {
375 $manageEvent[$dao->id]['state_province'] = CRM_Core_PseudoConstant::stateProvince($defaults['location']['address'][1]['state_province_id']);
376 }
377
378 //show campaigns on selector.
379 $manageEvent[$dao->id]['campaign'] = CRM_Utils_Array::value($dao->campaign_id, $allCampaigns);
d7d7d5ab 380 $manageEvent[$dao->id]['reminder'] = CRM_Core_BAO_ActionSchedule::isConfigured($dao->id, $mappingID);
6a488035 381 $manageEvent[$dao->id]['is_pcp_enabled'] = CRM_Utils_Array::value($dao->id, $eventPCPS);
14c89ba8 382 $manageEvent[$dao->id]['event_type'] = CRM_Utils_Array::value($manageEvent[$dao->id]['event_type_id'], $eventType);
985f92a3 383 $manageEvent[$dao->id]['is_repeating_event'] = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_RecurringEntity', $dao->id, 'parent_id', 'entity_id');
a215a5b0
DS
384 // allow hooks to set 'field' value which allows configuration pop-up to show a tab as enabled/disabled
385 CRM_Utils_Hook::tabset('civicrm/event/manage/rows', $manageEvent, array('event_id' => $dao->id));
6a488035
TO
386 }
387 }
14c89ba8 388
d7d7d5ab 389 $manageEvent['tab'] = self::tabs($enableCart);
6a488035
TO
390 $this->assign('rows', $manageEvent);
391
392 $statusTypes = CRM_Event_PseudoConstant::participantStatus(NULL, 'is_counted = 1');
393 $statusTypesPending = CRM_Event_PseudoConstant::participantStatus(NULL, 'is_counted = 0');
394 $findParticipants['statusCounted'] = implode(', ', array_values($statusTypes));
395 $findParticipants['statusNotCounted'] = implode(', ', array_values($statusTypesPending));
396 $this->assign('findParticipants', $findParticipants);
6a488035
TO
397 }
398
399 /**
dc195289 400 * make a copy of a Event, including
6a488035
TO
401 * all the fields in the event wizard
402 *
403 * @return void
6a488035 404 */
00be9182 405 public function copy() {
6a488035
TO
406 $id = CRM_Utils_Request::retrieve('id', 'Positive', $this, TRUE, 0, 'GET');
407
408 $urlString = 'civicrm/event/manage';
409 $copyEvent = CRM_Event_BAO_Event::copy($id);
410 $urlParams = 'reset=1';
411 // Redirect to Copied Event Configuration
412 if ($copyEvent->id) {
413 $urlString = 'civicrm/event/manage/settings';
414 $urlParams .= '&action=update&id=' . $copyEvent->id;
415 }
416
417 return CRM_Utils_System::redirect(CRM_Utils_System::url($urlString, $urlParams));
418 }
419
00be9182 420 public function search() {
608e6658 421 if (isset($this->_action) & (CRM_Core_Action::ADD |
6a488035
TO
422 CRM_Core_Action::UPDATE |
423 CRM_Core_Action::DELETE
424 )
425 ) {
426 return;
427 }
428
429 $form = new CRM_Core_Controller_Simple('CRM_Event_Form_SearchEvent', ts('Search Events'), CRM_Core_Action::ADD);
430 $form->setEmbedded(TRUE);
431 $form->setParent($this);
432 $form->process();
433 $form->run();
434 }
435
0cf587a7 436 /**
c490a46a 437 * @param array $params
0cf587a7
EM
438 * @param bool $sortBy
439 * @param $force
440 *
441 * @return string
442 */
00be9182 443 public function whereClause(&$params, $sortBy = TRUE, $force) {
353ffa53
TO
444 $values = array();
445 $clauses = array();
446 $title = $this->get('title');
6a488035
TO
447 $createdId = $this->get('cid');
448
449 if ($createdId) {
450 $clauses[] = "(created_id = {$createdId})";
451 }
452
453 if ($title) {
454 $clauses[] = "title LIKE %1";
455 if (strpos($title, '%') !== FALSE) {
456 $params[1] = array(trim($title), 'String', FALSE);
457 }
458 else {
459 $params[1] = array(trim($title), 'String', TRUE);
460 }
461 }
462
463 $value = $this->get('event_type_id');
464 $val = array();
465 if ($value) {
466 if (is_array($value)) {
467 foreach ($value as $k => $v) {
468 if ($v) {
469 $val[$k] = $k;
470 }
471 }
472 $type = implode(',', $val);
473 }
474 $clauses[] = "event_type_id IN ({$type})";
475 }
476
477 $eventsByDates = $this->get('eventsByDates');
478 if ($this->_searchResult) {
479 if ($eventsByDates) {
480
481 $from = $this->get('start_date');
482 if (!CRM_Utils_System::isNull($from)) {
483 $clauses[] = '( start_date >= %3 OR start_date IS NULL )';
484 $params[3] = array($from, 'String');
485 }
486
487 $to = $this->get('end_date');
488 if (!CRM_Utils_System::isNull($to)) {
489 $clauses[] = '( end_date <= %4 OR end_date IS NULL )';
490 $params[4] = array($to, 'String');
491 }
492 }
493 else {
494 $curDate = date('YmdHis');
495 $clauses[5] = "(end_date >= {$curDate} OR end_date IS NULL)";
496 }
497 }
498 else {
499 $curDate = date('YmdHis');
500 $clauses[] = "(end_date >= {$curDate} OR end_date IS NULL)";
501 }
502
503 if ($sortBy &&
504 $this->_sortByCharacter !== NULL
505 ) {
506 $clauses[] = "title LIKE '" . strtolower(CRM_Core_DAO::escapeWildCardString($this->_sortByCharacter)) . "%'";
507 }
508
e070961b 509 $campaignIds = $this->get('campaign_id');
510 if (!CRM_Utils_System::isNull($campaignIds)) {
511 if (!is_array($campaignIds)) {
6a488035
TO
512 $campaignIds = array($campaignIds);
513 }
e070961b 514 $clauses[] = '( campaign_id IN ( ' . implode(' , ', array_values($campaignIds)) . ' ) )';
6a488035
TO
515 }
516
d7d7d5ab 517 // don't do a the below assignment when doing a
6a488035
TO
518 // AtoZ pager clause
519 if ($sortBy) {
520 if (count($clauses) > 1 || $eventsByDates) {
521 $this->assign('isSearch', 1);
522 }
523 else {
524 $this->assign('isSearch', 0);
525 }
526 }
527
528 return !empty($clauses) ? implode(' AND ', $clauses) : '(1)';
529 }
530
0cf587a7
EM
531 /**
532 * @param $whereClause
100fef9d 533 * @param array $whereParams
0cf587a7 534 */
00be9182 535 public function pager($whereClause, $whereParams) {
6a488035
TO
536
537 $params['status'] = ts('Event %%StatusMessage%%');
538 $params['csvString'] = NULL;
539 $params['buttonTop'] = 'PagerTopButton';
540 $params['buttonBottom'] = 'PagerBottomButton';
541 $params['rowCount'] = $this->get(CRM_Utils_Pager::PAGE_ROWCOUNT);
542 if (!$params['rowCount']) {
543 $params['rowCount'] = CRM_Utils_Pager::ROWCOUNT;
544 }
545
546 $query = "
547SELECT count(id)
548 FROM civicrm_event
549 WHERE $whereClause";
550
551 $params['total'] = CRM_Core_DAO::singleValueQuery($query, $whereParams);
552
553 $this->_pager = new CRM_Utils_Pager($params);
554 $this->assign_by_ref('pager', $this->_pager);
555 }
556
0cf587a7
EM
557 /**
558 * @param $whereClause
100fef9d 559 * @param array $whereParams
0cf587a7 560 */
00be9182 561 public function pagerAtoZ($whereClause, $whereParams) {
6a488035
TO
562
563 $query = "
564 SELECT DISTINCT UPPER(LEFT(title, 1)) as sort_name
565 FROM civicrm_event
566 WHERE $whereClause
567 ORDER BY LEFT(title, 1)
568";
569 $dao = CRM_Core_DAO::executeQuery($query, $whereParams);
570
571 $aToZBar = CRM_Utils_PagerAToZ::getAToZBar($dao, $this->_sortByCharacter, TRUE);
572 $this->assign('aToZ', $aToZBar);
573 }
96025800 574
6a488035 575}