Merge pull request #4764 from rohankatkar/CRM-15615
[civicrm-core.git] / CRM / Event / Form / Task.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
06b69b18 4 | CiviCRM version 4.5 |
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 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * This class generates task actions for CiviEvent
38 *
39 */
40class CRM_Event_Form_Task extends CRM_Core_Form {
41
42 /**
100fef9d 43 * The task being performed
6a488035
TO
44 *
45 * @var int
46 */
47 protected $_task;
48
49 /**
50 * The additional clause that we restrict the search with
51 *
52 * @var string
53 */
54 protected $_componentClause = NULL;
55
56 /**
57 * The array that holds all the component ids
58 *
59 * @var array
60 */
61 protected $_componentIds;
62
63 /**
64 * The array that holds all the participant ids
65 *
66 * @var array
67 */
68 protected $_participantIds;
69
70 /**
100fef9d 71 * Build all the data structures needed to build the form
6a488035
TO
72 *
73 * @param
74 *
75 * @return void
76 * @access public
77 */
78 function preProcess() {
79 self::preProcessCommon($this);
80 }
81
0cf587a7 82 /**
c490a46a 83 * @param CRM_Core_Form $form
0cf587a7
EM
84 * @param bool $useTable
85 */
6a488035
TO
86 static function preProcessCommon(&$form, $useTable = FALSE) {
87 $form->_participantIds = array();
88
89 $values = $form->controller->exportValues($form->get('searchFormName'));
90
91 $form->_task = $values['task'];
92 $eventTasks = CRM_Event_Task::tasks();
93 $form->assign('taskName', $eventTasks[$form->_task]);
94
95 $ids = array();
96 if ($values['radio_ts'] == 'ts_sel') {
97 foreach ($values as $name => $value) {
98 if (substr($name, 0, CRM_Core_Form::CB_PREFIX_LEN) == CRM_Core_Form::CB_PREFIX) {
99 $ids[] = substr($name, CRM_Core_Form::CB_PREFIX_LEN);
100 }
101 }
102 }
103 else {
104 $queryParams = $form->get('queryParams');
105 $sortOrder = NULL;
106 if ($form->get(CRM_Utils_Sort::SORT_ORDER)) {
107 $sortOrder = $form->get(CRM_Utils_Sort::SORT_ORDER);
108 }
109
110 $query = new CRM_Contact_BAO_Query($queryParams, NULL, NULL, FALSE, FALSE,
111 CRM_Contact_BAO_Query::MODE_EVENT
112 );
113 $query->_distinctComponentClause = "civicrm_participant.id";
114 $query->_groupByComponentClause = " GROUP BY civicrm_participant.id ";
115 $result = $query->searchQuery(0, 0, $sortOrder);
116 while ($result->fetch()) {
117 $ids[] = $result->participant_id;
118 }
119 }
120
121 if (!empty($ids)) {
122 $form->_componentClause = ' civicrm_participant.id IN ( ' . implode(',', $ids) . ' ) ';
123 $form->assign('totalSelectedParticipants', count($ids));
124 }
125
126 $form->_participantIds = $form->_componentIds = $ids;
127
128 //set the context for redirection for any task actions
129 $session = CRM_Core_Session::singleton();
130
131 $qfKey = CRM_Utils_Request::retrieve('qfKey', 'String', $this);
132 $urlParams = 'force=1';
133 if (CRM_Utils_Rule::qfKey($qfKey)) {
134 $urlParams .= "&qfKey=$qfKey";
135 }
136
137 $searchFormName = strtolower($form->get('searchFormName'));
138 if ($searchFormName == 'search') {
139 $session->replaceUserContext(CRM_Utils_System::url('civicrm/event/search', $urlParams));
140 }
141 else {
142 $session->replaceUserContext(CRM_Utils_System::url("civicrm/contact/search/$searchFormName",
143 $urlParams
144 ));
145 }
146 }
147
148 /**
149 * Given the participant id, compute the contact id
150 * since its used for things like send email
151 */
152 public function setContactIDs() {
153 $this->_contactIds = &CRM_Core_DAO::getContactIDsFromComponent($this->_participantIds,
154 'civicrm_participant'
155 );
156 }
157
158 /**
100fef9d 159 * Simple shell that derived classes can call to add buttons to
6a488035
TO
160 * the form with a customized title for the main Submit
161 *
162 * @param string $title title of the main button
da6b46f4
EM
163 * @param string $nextType
164 * @param string $backType
165 * @param bool $submitOnce
166 *
6a488035
TO
167 * @return void
168 * @access public
169 */
170 function addDefaultButtons($title, $nextType = 'next', $backType = 'back', $submitOnce = FALSE) {
171 $this->addButtons(array(
172 array(
173 'type' => $nextType,
174 'name' => $title,
175 'isDefault' => TRUE,
176 ),
177 array(
178 'type' => $backType,
179 'name' => ts('Cancel'),
180 ),
181 )
182 );
183 }
184}
185