Make all form task inherit from Core_Form_Task otherwise export can fail when accesse...
[civicrm-core.git] / CRM / Event / Form / Task.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
8c9251b3 6 | Copyright CiviCRM LLC (c) 2004-2018 |
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
8c9251b3 31 * @copyright CiviCRM LLC (c) 2004-2018
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
31aaf096
MW
37 * Class for event form task actions.
38 * FIXME: This needs refactoring to properly inherit from CRM_Core_Form_Task and share more functions.
6a488035 39 */
31aaf096 40class CRM_Event_Form_Task extends CRM_Core_Form_Task {
6a488035
TO
41
42 /**
66f9e52b 43 * The array that holds all the participant ids.
6a488035
TO
44 *
45 * @var array
46 */
47 protected $_participantIds;
48
49 /**
66f9e52b 50 * Build all the data structures needed to build the form.
6a488035
TO
51 *
52 * @param
53 *
54 * @return void
6a488035 55 */
00be9182 56 public function preProcess() {
6a488035
TO
57 self::preProcessCommon($this);
58 }
59
0cf587a7 60 /**
c490a46a 61 * @param CRM_Core_Form $form
0cf587a7
EM
62 * @param bool $useTable
63 */
00be9182 64 public static function preProcessCommon(&$form, $useTable = FALSE) {
6a488035
TO
65 $form->_participantIds = array();
66
67 $values = $form->controller->exportValues($form->get('searchFormName'));
68
69 $form->_task = $values['task'];
8fd26836
MW
70 $tasks = CRM_Event_Task::permissionedTaskTitles(CRM_Core_Permission::getPermission());
71 if (!array_key_exists($form->_task, $tasks)) {
72 CRM_Core_Error::statusBounce(ts('You do not have permission to access this page.'));
73 }
74 $form->assign('taskName', $tasks[$form->_task]);
6a488035
TO
75
76 $ids = array();
77 if ($values['radio_ts'] == 'ts_sel') {
78 foreach ($values as $name => $value) {
79 if (substr($name, 0, CRM_Core_Form::CB_PREFIX_LEN) == CRM_Core_Form::CB_PREFIX) {
80 $ids[] = substr($name, CRM_Core_Form::CB_PREFIX_LEN);
81 }
82 }
83 }
84 else {
85 $queryParams = $form->get('queryParams');
86 $sortOrder = NULL;
87 if ($form->get(CRM_Utils_Sort::SORT_ORDER)) {
88 $sortOrder = $form->get(CRM_Utils_Sort::SORT_ORDER);
89 }
90
91 $query = new CRM_Contact_BAO_Query($queryParams, NULL, NULL, FALSE, FALSE,
92 CRM_Contact_BAO_Query::MODE_EVENT
93 );
94 $query->_distinctComponentClause = "civicrm_participant.id";
95 $query->_groupByComponentClause = " GROUP BY civicrm_participant.id ";
96 $result = $query->searchQuery(0, 0, $sortOrder);
97 while ($result->fetch()) {
98 $ids[] = $result->participant_id;
99 }
100 }
101
102 if (!empty($ids)) {
103 $form->_componentClause = ' civicrm_participant.id IN ( ' . implode(',', $ids) . ' ) ';
104 $form->assign('totalSelectedParticipants', count($ids));
105 }
106
107 $form->_participantIds = $form->_componentIds = $ids;
108
109 //set the context for redirection for any task actions
110 $session = CRM_Core_Session::singleton();
111
ffa4f50c 112 $qfKey = CRM_Utils_Request::retrieve('qfKey', 'String', $form);
6a488035
TO
113 $urlParams = 'force=1';
114 if (CRM_Utils_Rule::qfKey($qfKey)) {
115 $urlParams .= "&qfKey=$qfKey";
116 }
117
118 $searchFormName = strtolower($form->get('searchFormName'));
119 if ($searchFormName == 'search') {
120 $session->replaceUserContext(CRM_Utils_System::url('civicrm/event/search', $urlParams));
121 }
122 else {
123 $session->replaceUserContext(CRM_Utils_System::url("civicrm/contact/search/$searchFormName",
353ffa53
TO
124 $urlParams
125 ));
6a488035
TO
126 }
127 }
128
129 /**
130 * Given the participant id, compute the contact id
131 * since its used for things like send email
132 */
133 public function setContactIDs() {
134 $this->_contactIds = &CRM_Core_DAO::getContactIDsFromComponent($this->_participantIds,
135 'civicrm_participant'
136 );
137 }
138
139 /**
66f9e52b 140 * Simple shell that derived classes can call to add buttons to.
6a488035
TO
141 * the form with a customized title for the main Submit
142 *
d4dd1e85
TO
143 * @param string $title
144 * Title of the main button.
da6b46f4
EM
145 * @param string $nextType
146 * @param string $backType
147 * @param bool $submitOnce
148 *
6a488035 149 * @return void
6a488035 150 */
00be9182 151 public function addDefaultButtons($title, $nextType = 'next', $backType = 'back', $submitOnce = FALSE) {
6a488035
TO
152 $this->addButtons(array(
153 array(
154 'type' => $nextType,
155 'name' => $title,
156 'isDefault' => TRUE,
157 ),
158 array(
159 'type' => $backType,
160 'name' => ts('Cancel'),
161 ),
162 )
163 );
164 }
96025800 165
6a488035 166}