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