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