Merge pull request #18959 from seamuslee001/dev_core_2153_2
[civicrm-core.git] / CRM / Event / Form / Task.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 */
17
18/**
31aaf096
MW
19 * Class for event form task actions.
20 * FIXME: This needs refactoring to properly inherit from CRM_Core_Form_Task and share more functions.
6a488035 21 */
31aaf096 22class CRM_Event_Form_Task extends CRM_Core_Form_Task {
6a488035
TO
23
24 /**
66f9e52b 25 * The array that holds all the participant ids.
6a488035
TO
26 *
27 * @var array
28 */
29 protected $_participantIds;
30
31 /**
66f9e52b 32 * Build all the data structures needed to build the form.
6a488035
TO
33 *
34 * @param
35 *
36 * @return void
6a488035 37 */
00be9182 38 public function preProcess() {
6a488035
TO
39 self::preProcessCommon($this);
40 }
41
0cf587a7 42 /**
2d09a0c3 43 * @param CRM_Core_Form_Task $form
0cf587a7 44 */
2b089ce1 45 public static function preProcessCommon(&$form) {
be2fb01f 46 $form->_participantIds = [];
6a488035 47
2d09a0c3 48 $values = $form->getSearchFormValues();
6a488035
TO
49
50 $form->_task = $values['task'];
8fd26836
MW
51 $tasks = CRM_Event_Task::permissionedTaskTitles(CRM_Core_Permission::getPermission());
52 if (!array_key_exists($form->_task, $tasks)) {
53 CRM_Core_Error::statusBounce(ts('You do not have permission to access this page.'));
54 }
6a488035 55
56752ec0 56 $ids = $form->getSelectedIDs($values);
57
58 if (!$ids) {
6a488035
TO
59 $queryParams = $form->get('queryParams');
60 $sortOrder = NULL;
61 if ($form->get(CRM_Utils_Sort::SORT_ORDER)) {
62 $sortOrder = $form->get(CRM_Utils_Sort::SORT_ORDER);
63 }
64
65 $query = new CRM_Contact_BAO_Query($queryParams, NULL, NULL, FALSE, FALSE,
66 CRM_Contact_BAO_Query::MODE_EVENT
67 );
68 $query->_distinctComponentClause = "civicrm_participant.id";
69 $query->_groupByComponentClause = " GROUP BY civicrm_participant.id ";
70 $result = $query->searchQuery(0, 0, $sortOrder);
71 while ($result->fetch()) {
72 $ids[] = $result->participant_id;
73 }
74 }
75
76 if (!empty($ids)) {
77 $form->_componentClause = ' civicrm_participant.id IN ( ' . implode(',', $ids) . ' ) ';
78 $form->assign('totalSelectedParticipants', count($ids));
79 }
80
81 $form->_participantIds = $form->_componentIds = $ids;
82
188bf7c3 83 $form->setNextUrl('event');
6a488035
TO
84 }
85
86 /**
87 * Given the participant id, compute the contact id
88 * since its used for things like send email
89 */
90 public function setContactIDs() {
a301608a 91 $this->_contactIds = CRM_Core_DAO::getContactIDsFromComponent($this->_participantIds,
6a488035
TO
92 'civicrm_participant'
93 );
94 }
95
96 /**
66f9e52b 97 * Simple shell that derived classes can call to add buttons to.
6a488035
TO
98 * the form with a customized title for the main Submit
99 *
d4dd1e85
TO
100 * @param string $title
101 * Title of the main button.
da6b46f4
EM
102 * @param string $nextType
103 * @param string $backType
104 * @param bool $submitOnce
105 *
6a488035 106 * @return void
6a488035 107 */
00be9182 108 public function addDefaultButtons($title, $nextType = 'next', $backType = 'back', $submitOnce = FALSE) {
be2fb01f 109 $this->addButtons([
90b461f1
SL
110 [
111 'type' => $nextType,
112 'name' => $title,
113 'isDefault' => TRUE,
114 ],
115 [
116 'type' => $backType,
117 'name' => ts('Cancel'),
118 ],
119 ]);
6a488035 120 }
96025800 121
6a488035 122}