Merge branch '4.6' into master
[civicrm-core.git] / CRM / Activity / Form / Search.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
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 |
c73475ea 12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
6a488035
TO
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 |
c73475ea
WA
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
6a488035
TO
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
e7112fa7 31 * @copyright CiviCRM LLC (c) 2004-2015
6a488035
TO
32 */
33
34/**
b6c94f42 35 * This file is for activity search.
6a488035 36 */
3efb5b86 37class CRM_Activity_Form_Search extends CRM_Core_Form_Search {
6a488035 38
6a488035 39 /**
fe482240 40 * The params that are sent to the query.
6a488035
TO
41 *
42 * @var array
6a488035
TO
43 */
44 protected $_queryParams;
45
6a488035 46 /**
fe482240 47 * Are we restricting ourselves to a single contact.
6a488035 48 *
6a488035
TO
49 * @var boolean
50 */
51 protected $_single = FALSE;
52
53 /**
fe482240 54 * Are we restricting ourselves to a single contact.
6a488035 55 *
6a488035
TO
56 * @var boolean
57 */
58 protected $_limit = NULL;
59
6a488035 60 /**
fe482240 61 * Prefix for the controller.
6a488035
TO
62 */
63 protected $_prefix = "activity_";
64
6a488035 65 /**
fe482240 66 * The saved search ID retrieved from the GET vars.
6a488035
TO
67 *
68 * @var int
6a488035
TO
69 */
70 protected $_ssID;
71
72 /**
fe482240 73 * Processing needed for buildForm and later.
6a488035 74 */
00be9182 75 public function preProcess() {
6a488035
TO
76 $this->set('searchFormName', 'Search');
77
c490a46a 78 // set the button names
6a488035 79 $this->_searchButtonName = $this->getButtonName('refresh');
6a488035
TO
80 $this->_actionButtonName = $this->getButtonName('next', 'action');
81
82 $this->_done = FALSE;
83 $this->defaults = array();
84
c490a46a
CW
85 // we allow the controller to set force/reset externally, useful when we are being
86 // driven by the wizard framework
353ffa53
TO
87 $this->_reset = CRM_Utils_Request::retrieve('reset', 'Boolean', CRM_Core_DAO::$_nullObject);
88 $this->_force = CRM_Utils_Request::retrieve('force', 'Boolean', $this, FALSE);
89 $this->_limit = CRM_Utils_Request::retrieve('limit', 'Positive', $this);
6a488035
TO
90 $this->_context = CRM_Utils_Request::retrieve('context', 'String', $this, FALSE, 'search');
91
92 $this->assign("context", $this->_context);
93
94 // get user submitted values
95 // get it from controller only if form has been submitted, else preProcess has set this
96 if (!empty($_POST) && !$this->controller->isModal()) {
97 $this->_formValues = $this->controller->exportValues($this->_name);
98 }
99 else {
100 $this->_formValues = $this->get('formValues');
101 }
102
103 if (empty($this->_formValues)) {
104 if (isset($this->_ssID)) {
105 $this->_formValues = CRM_Contact_BAO_SavedSearch::getFormValues($this->_ssID);
106 }
107 }
108
109 if ($this->_force) {
110 $this->postProcess();
111 $this->set('force', 0);
112 }
113
114 $sortID = NULL;
115 if ($this->get(CRM_Utils_Sort::SORT_ID)) {
116 $sortID = CRM_Utils_Sort::sortIDValue($this->get(CRM_Utils_Sort::SORT_ID),
117 $this->get(CRM_Utils_Sort::SORT_DIRECTION)
118 );
119 }
120
121 $this->_queryParams = CRM_Contact_BAO_Query::convertFormValues($this->_formValues);
122 $selector = new CRM_Activity_Selector_Search($this->_queryParams,
123 $this->_action,
124 NULL,
125 $this->_single,
126 $this->_limit,
127 $this->_context
128 );
129 $prefix = NULL;
130 if ($this->_context == 'user') {
131 $prefix = $this->_prefix;
132 }
133
134 $this->assign("{$prefix}limit", $this->_limit);
135 $this->assign("{$prefix}single", $this->_single);
136
137 $controller = new CRM_Core_Selector_Controller($selector,
138 $this->get(CRM_Utils_Pager::PAGE_ID),
139 $sortID,
140 CRM_Core_Action::VIEW,
141 $this,
142 CRM_Core_Selector_Controller::TRANSFER,
143 $prefix
144 );
145 $controller->setEmbedded(TRUE);
146 $controller->moveFromSessionToTemplate();
147
148 $this->assign('summary', $this->get('summary'));
149 }
150
151 /**
fe482240 152 * Build the form object.
6a488035 153 */
00be9182 154 public function buildQuickForm() {
3efb5b86 155 parent::buildQuickForm();
18d2d5e2 156 $this->addElement('text', 'sort_name', ts('Name or Email'), CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Contact', 'sort_name'));
6a488035
TO
157
158 CRM_Activity_BAO_Query::buildSearchForm($this);
159
6a488035
TO
160 $rows = $this->get('rows');
161 if (is_array($rows)) {
162 if (!$this->_single) {
8d36b801 163 $this->addRowSelectors($rows);
6a488035
TO
164 }
165
6a488035
TO
166 $permission = CRM_Core_Permission::getPermission();
167
34197a55 168 $this->addTaskMenu(CRM_Activity_Task::permissionedTaskTitles($permission));
6a488035
TO
169 }
170
6a488035
TO
171 }
172
173 /**
174 * The post processing of the form gets done here.
175 *
176 * Key things done during post processing are
177 * - check for reset or next request. if present, skip post procesing.
178 * - now check if user requested running a saved search, if so, then
179 * the form values associated with the saved search are used for searching.
180 * - if user has done a submit with new values the regular post submissing is
181 * done.
2e2605fe 182 *
6a488035
TO
183 * The processing consists of using a Selector / Controller framework for getting the
184 * search results.
6a488035 185 */
00be9182 186 public function postProcess() {
6a488035
TO
187 if ($this->_done) {
188 return;
189 }
190
191 $this->_done = TRUE;
192
193 if (!empty($_POST)) {
194 $this->_formValues = $this->controller->exportValues($this->_name);
9ab34172 195 foreach (array('activity_type_id', 'status_id', 'activity_subject') as $element) {
196 $value = CRM_Utils_Array::value($element, $this->_formValues);
197 if ($value) {
198 if (is_array($value)) {
199 if ($element == 'status_id') {
200 unset($this->_formValues[$element]);
a0cbe4fa 201 $this->_formValues['activity_' . $element] = $value;
9ab34172 202 }
9ab34172 203 }
204 else {
205 $this->_formValues[$element] = array('LIKE' => "%$value%");
206 }
207 }
208 }
6a488035
TO
209 }
210
211 $this->fixFormValues();
212
213 if (isset($this->_ssID) && empty($_POST)) {
214 // if we are editing / running a saved search and the form has not been posted
215 $this->_formValues = CRM_Contact_BAO_SavedSearch::getFormValues($this->_ssID);
216 }
6a488035 217
d43b88cc
CW
218 // We don't show test records in summaries or dashboards
219 if (empty($this->_formValues['activity_test']) && $this->_force) {
6a488035
TO
220 $this->_formValues["activity_test"] = 0;
221 }
28c666be 222
c94d39fd 223 CRM_Core_BAO_CustomValue::fixCustomFieldValue($this->_formValues);
6a488035
TO
224
225 $this->_queryParams = CRM_Contact_BAO_Query::convertFormValues($this->_formValues);
226
227 $this->set('formValues', $this->_formValues);
228 $this->set('queryParams', $this->_queryParams);
229
230 $buttonName = $this->controller->getButtonName();
e341bbee 231 if ($buttonName == $this->_actionButtonName) {
6a488035
TO
232 // check actionName and if next, then do not repeat a search, since we are going to the next page
233 // hack, make sure we reset the task values
95ea77ec 234 $stateMachine = $this->controller->getStateMachine();
6a488035
TO
235 $formName = $stateMachine->getTaskFormName();
236 $this->controller->resetPage($formName);
237 return;
238 }
239
240 $sortID = NULL;
241 if ($this->get(CRM_Utils_Sort::SORT_ID)) {
242 $sortID = CRM_Utils_Sort::sortIDValue($this->get(CRM_Utils_Sort::SORT_ID),
243 $this->get(CRM_Utils_Sort::SORT_DIRECTION)
244 );
245 }
246
247 $this->_queryParams = CRM_Contact_BAO_Query::convertFormValues($this->_formValues);
248
249 $selector = new CRM_Activity_Selector_Search($this->_queryParams,
250 $this->_action,
251 NULL,
252 $this->_single,
253 $this->_limit,
254 $this->_context
255 );
256 $selector->setKey($this->controller->_key);
257
258 $prefix = NULL;
259 if ($this->_context == 'basic' || $this->_context == 'user') {
260 $prefix = $this->_prefix;
261 }
262
263 $controller = new CRM_Core_Selector_Controller($selector,
264 $this->get(CRM_Utils_Pager::PAGE_ID),
265 $sortID,
266 CRM_Core_Action::VIEW,
267 $this,
268 CRM_Core_Selector_Controller::SESSION,
269 $prefix
270 );
271 $controller->setEmbedded(TRUE);
272 $query = &$selector->getQuery();
273
274 if ($this->_context == 'user') {
275 $query->setSkipPermission(TRUE);
276 }
277 $controller->run();
278 }
279
00be9182 280 public function fixFormValues() {
6a488035
TO
281 if (!$this->_force) {
282 return;
283 }
0370ad20 284
6a488035
TO
285 $status = CRM_Utils_Request::retrieve('status', 'String', $this);
286 if ($status) {
97b002d7
CW
287 $this->_formValues['activity_status_id'] = $status;
288 $this->_defaults['activity_status_id'] = $status;
6a488035
TO
289 }
290
300c3253
KJ
291 $survey = CRM_Utils_Request::retrieve('survey', 'Positive', CRM_Core_DAO::$_nullObject);
292
6a488035 293 if ($survey) {
9231464f
KJ
294 $this->_formValues['activity_survey_id'] = $this->_defaults['activity_survey_id'] = $survey;
295 $sid = CRM_Utils_Array::value('activity_survey_id', $this->_formValues);
296 $activity_type_id = CRM_Core_DAO::getFieldValue('CRM_Campaign_DAO_Survey', $sid, 'activity_type_id');
297
c56c5190 298 // since checkbox are replaced by multiple select option
299 $this->_formValues['activity_type_id'] = $activity_type_id;
300 $this->_defaults['activity_type_id'] = $activity_type_id;
6a488035
TO
301 }
302 $cid = CRM_Utils_Request::retrieve('cid', 'Positive', $this);
303
304 if ($cid) {
305 $cid = CRM_Utils_Type::escape($cid, 'Integer');
306 if ($cid > 0) {
307 $this->_formValues['contact_id'] = $cid;
308
309 $activity_role = CRM_Utils_Request::retrieve('activity_role', 'Positive', $this);
310
311 if ($activity_role) {
312 $this->_formValues['activity_role'] = $activity_role;
313 }
314 else {
6a488035
TO
315 $this->_defaults['sort_name'] = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $cid, 'sort_name');
316 }
317 // also assign individual mode to the template
318 $this->_single = TRUE;
319 }
320 }
8ef12e64 321
4e636a74 322 // Added for membership search
8ef12e64 323
4e636a74
AH
324 $signupType = CRM_Utils_Request::retrieve('signupType', 'Positive',
325 CRM_Core_DAO::$_nullObject
326 );
8ef12e64 327
4e636a74
AH
328 if ($signupType) {
329 //$this->_formValues['activity_type_id'] = array();
2e2acd1f 330 $this->_formValues['activity_role'] = 1;
2e2acd1f 331 $this->_defaults['activity_role'] = 1;
4e636a74 332 $activityTypes = CRM_Core_PseudoConstant::activityType(TRUE, FALSE, FALSE, 'name');
0370ad20
AH
333
334 $renew = CRM_Utils_Array::key('Membership Renewal', $activityTypes);
335 $signup = CRM_Utils_Array::key('Membership Signup', $activityTypes);
8ef12e64 336
4e636a74
AH
337 switch ($signupType) {
338 case 3: // signups and renewals
339 $this->_formValues['activity_type_id'][$renew] = 1;
340 $this->_defaults['activity_type_id'][$renew] = 1;
341 case 1: // signups only
342 $this->_formValues['activity_type_id'][$signup] = 1;
343 $this->_defaults['activity_type_id'][$signup] = 1;
344 break;
8ef12e64 345
4e636a74
AH
346 case 2: // renewals only
347 $this->_formValues['activity_type_id'][$renew] = 1;
348 $this->_defaults['activity_type_id'][$renew] = 1;
349 break;
350 }
351 }
8ef12e64 352
0370ad20 353 $dateLow = CRM_Utils_Request::retrieve('dateLow', 'String',
4e636a74
AH
354 CRM_Core_DAO::$_nullObject
355 );
8ef12e64 356
4e636a74 357 if ($dateLow) {
0370ad20
AH
358 $dateLow = date('m/d/Y', strtotime($dateLow));
359 $this->_formValues['activity_date_relative'] = 0;
360 $this->_defaults['activity_date_relative'] = 0;
4e636a74
AH
361 $this->_formValues['activity_date_low'] = $dateLow;
362 $this->_defaults['activity_date_low'] = $dateLow;
363 }
8ef12e64 364
0370ad20 365 $dateHigh = CRM_Utils_Request::retrieve('dateHigh', 'String',
4e636a74
AH
366 CRM_Core_DAO::$_nullObject
367 );
8ef12e64 368
4e636a74
AH
369 if ($dateHigh) {
370 // Activity date time assumes midnight at the beginning of the date
371 // This sets it to almost midnight at the end of the date
32864ccf 372 /* if ($dateHigh <= 99999999) {
e70a7fc0 373 $dateHigh = 1000000 * $dateHigh + 235959;
0370ad20
AH
374 } */
375 $dateHigh = date('m/d/Y', strtotime($dateHigh));
376 $this->_formValues['activity_date_relative'] = 0;
377 $this->_defaults['activity_date_relative'] = 0;
4e636a74
AH
378 $this->_formValues['activity_date_high'] = $dateHigh;
379 $this->_defaults['activity_date_high'] = $dateHigh;
8ef12e64 380 }
9231464f
KJ
381
382 if (!empty($this->_defaults)) {
383 $this->setDefaults($this->_defaults);
384 }
6a488035
TO
385 }
386
ffd93213
EM
387 /**
388 * @return null
389 */
00be9182 390 public function getFormValues() {
6a488035
TO
391 return NULL;
392 }
393
394 /**
395 * Return a descriptive name for the page, used in wizard header
396 *
397 * @return string
6a488035
TO
398 */
399 public function getTitle() {
400 return ts('Find Activities');
401 }
96025800 402
6a488035 403}