Merge pull request #6124 from sudhabisht/46qa
[civicrm-core.git] / CRM / Member / Form / Search.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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
31 * @copyright CiviCRM LLC (c) 2004-2015
32 * $Id$
33 *
34 */
35
36 /**
37 * Files required
38 */
39
40 /**
41 * This file is for civimember search
42 */
43 class CRM_Member_Form_Search extends CRM_Core_Form_Search {
44
45 /**
46 * The params that are sent to the query.
47 *
48 * @var array
49 */
50 protected $_queryParams;
51
52 /**
53 * Are we restricting ourselves to a single contact.
54 *
55 * @var boolean
56 */
57 protected $_single = FALSE;
58
59 /**
60 * Are we restricting ourselves to a single contact.
61 *
62 * @var boolean
63 */
64 protected $_limit = NULL;
65
66 protected $_defaults;
67
68 /**
69 * Prefix for the controller.
70 */
71 protected $_prefix = "member_";
72
73 /**
74 * Processing needed for buildForm and later.
75 *
76 * @return void
77 */
78 public function preProcess() {
79 $this->set('searchFormName', 'Search');
80
81 /**
82 * set the button names
83 */
84 $this->_searchButtonName = $this->getButtonName('refresh');
85 $this->_actionButtonName = $this->getButtonName('next', 'action');
86
87 $this->_done = FALSE;
88
89 $this->defaults = array();
90
91 /*
92 * we allow the controller to set force/reset externally, useful when we are being
93 * driven by the wizard framework
94 */
95
96 $this->_reset = CRM_Utils_Request::retrieve('reset', 'Boolean', CRM_Core_DAO::$_nullObject);
97 $this->_force = CRM_Utils_Request::retrieve('force', 'Boolean', $this, FALSE);
98 $this->_limit = CRM_Utils_Request::retrieve('limit', 'Positive', $this);
99 $this->_context = CRM_Utils_Request::retrieve('context', 'String', $this, FALSE, 'search');
100
101 $this->assign("context", $this->_context);
102
103 // get user submitted values
104 // get it from controller only if form has been submitted, else preProcess has set this
105 if (!empty($_POST)) {
106 $this->_formValues = $this->controller->exportValues($this->_name);
107 }
108 else {
109 $this->_formValues = $this->get('formValues');
110 }
111
112 if ($this->_force) {
113 $this->postProcess();
114 $this->set('force', 0);
115 }
116
117 $sortID = NULL;
118 if ($this->get(CRM_Utils_Sort::SORT_ID)) {
119 $sortID = CRM_Utils_Sort::sortIDValue($this->get(CRM_Utils_Sort::SORT_ID),
120 $this->get(CRM_Utils_Sort::SORT_DIRECTION)
121 );
122 }
123
124 $this->_queryParams = CRM_Contact_BAO_Query::convertFormValues($this->_formValues);
125 $selector = new CRM_Member_Selector_Search($this->_queryParams,
126 $this->_action,
127 NULL,
128 $this->_single,
129 $this->_limit,
130 $this->_context
131 );
132 $prefix = NULL;
133 if ($this->_context == 'basic') {
134 $prefix = $this->_prefix;
135 }
136
137 $this->assign("{$prefix}limit", $this->_limit);
138 $this->assign("{$prefix}single", $this->_single);
139
140 $controller = new CRM_Core_Selector_Controller($selector,
141 $this->get(CRM_Utils_Pager::PAGE_ID),
142 $sortID,
143 CRM_Core_Action::VIEW,
144 $this,
145 CRM_Core_Selector_Controller::TRANSFER,
146 $prefix
147 );
148
149 $controller->setEmbedded(TRUE);
150 $controller->moveFromSessionToTemplate();
151
152 $this->assign('summary', $this->get('summary'));
153 }
154
155 /**
156 * Build the form object.
157 *
158 *
159 * @return void
160 */
161 public function buildQuickForm() {
162 parent::buildQuickForm();
163 $this->addElement('text', 'sort_name', ts('Member Name or Email'), CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Contact', 'sort_name'));
164
165 CRM_Member_BAO_Query::buildSearchForm($this);
166
167 $rows = $this->get('rows');
168 if (is_array($rows)) {
169 if (!$this->_single) {
170 $this->addRowSelectors($rows);
171 }
172
173 $permission = CRM_Core_Permission::getPermission();
174
175 $this->addTaskMenu(CRM_Member_Task::permissionedTaskTitles($permission));
176 }
177
178 }
179
180 /**
181 * The post processing of the form gets done here.
182 *
183 * Key things done during post processing are
184 * - check for reset or next request. if present, skip post procesing.
185 * - now check if user requested running a saved search, if so, then
186 * the form values associated with the saved search are used for searching.
187 * - if user has done a submit with new values the regular post submissing is
188 * done.
189 * The processing consists of using a Selector / Controller framework for getting the
190 * search results.
191 *
192 * @param
193 *
194 * @return void
195 */
196 public function postProcess() {
197 if ($this->_done) {
198 return;
199 }
200
201 $this->_done = TRUE;
202
203 $this->_formValues = $this->controller->exportValues($this->_name);
204
205 $this->fixFormValues();
206
207 // We don't show test records in summaries or dashboards
208 if (empty($this->_formValues['member_test']) && $this->_force) {
209 $this->_formValues["member_test"] = 0;
210 }
211
212 $specialParams = array(
213 'membership_status_id',
214 'membership_type_id',
215 );
216 foreach ($specialParams as $element) {
217 $value = CRM_Utils_Array::value($element, $this->_formValues);
218 if (!empty($value) && is_array($value)) {
219 $this->_formValues[$element] = array('IN' => $value);
220 }
221 }
222
223 CRM_Core_BAO_CustomValue::fixFieldValueOfTypeMemo($this->_formValues);
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();
231 if ($buttonName == $this->_actionButtonName) {
232 // check actionName and if next, then do not repeat a search, since we are going to the next page
233
234 // hack, make sure we reset the task values
235 $stateMachine = $this->controller->getStateMachine();
236 $formName = $stateMachine->getTaskFormName();
237 $this->controller->resetPage($formName);
238 return;
239 }
240
241 $sortID = NULL;
242 if ($this->get(CRM_Utils_Sort::SORT_ID)) {
243 $sortID = CRM_Utils_Sort::sortIDValue($this->get(CRM_Utils_Sort::SORT_ID),
244 $this->get(CRM_Utils_Sort::SORT_DIRECTION)
245 );
246 }
247
248 $this->_queryParams = CRM_Contact_BAO_Query::convertFormValues($this->_formValues);
249
250 $selector = new CRM_Member_Selector_Search($this->_queryParams,
251 $this->_action,
252 NULL,
253 $this->_single,
254 $this->_limit,
255 $this->_context
256 );
257 $selector->setKey($this->controller->_key);
258
259 $prefix = NULL;
260 if ($this->_context == 'basic') {
261 $prefix = $this->_prefix;
262 }
263
264 $controller = new CRM_Core_Selector_Controller($selector,
265 $this->get(CRM_Utils_Pager::PAGE_ID),
266 $sortID,
267 CRM_Core_Action::VIEW,
268 $this,
269 CRM_Core_Selector_Controller::SESSION,
270 $prefix
271 );
272 $controller->setEmbedded(TRUE);
273
274 $query = &$selector->getQuery();
275 $controller->run();
276 }
277
278 public function setDefaultValues() {
279 return $this->_defaults;
280 }
281
282 public function fixFormValues() {
283 // if this search has been forced
284 // then see if there are any get values, and if so over-ride the post values
285 // note that this means that GET over-rides POST :)
286
287 if (!$this->_force) {
288 return;
289 }
290
291 $status = CRM_Utils_Request::retrieve('status', 'String',
292 CRM_Core_DAO::$_nullObject
293 );
294 if ($status) {
295 $status = explode(',', $status);
296 $this->_formValues['status_id'] = $this->_defaults['status_id'] = (array) $status;
297 }
298
299 $membershipType = CRM_Utils_Request::retrieve('type', 'String',
300 CRM_Core_DAO::$_nullObject
301 );
302
303 if ($membershipType) {
304 $this->_formValues['membership_type_id'] = array($membershipType);
305 $this->_defaults['membership_type_id'] = array($membershipType);
306 }
307
308 $cid = CRM_Utils_Request::retrieve('cid', 'Positive',
309 CRM_Core_DAO::$_nullObject
310 );
311
312 if ($cid) {
313 $cid = CRM_Utils_Type::escape($cid, 'Integer');
314 if ($cid > 0) {
315 $this->_formValues['contact_id'] = $cid;
316 list($display, $image) = CRM_Contact_BAO_Contact::getDisplayAndImage($cid);
317 $this->_defaults['sort_name'] = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $cid,
318 'sort_name'
319 );
320 // also assign individual mode to the template
321 $this->_single = TRUE;
322 }
323 }
324
325 $fromDate = CRM_Utils_Request::retrieve('start', 'Date',
326 CRM_Core_DAO::$_nullObject
327 );
328 if ($fromDate) {
329 list($date) = CRM_Utils_Date::setDateDefaults($fromDate);
330 $this->_formValues['member_start_date_low'] = $this->_defaults['member_start_date_low'] = $date;
331 }
332
333 $toDate = CRM_Utils_Request::retrieve('end', 'Date',
334 CRM_Core_DAO::$_nullObject
335 );
336 if ($toDate) {
337 list($date) = CRM_Utils_Date::setDateDefaults($toDate);
338 $this->_formValues['member_start_date_high'] = $this->_defaults['member_start_date_high'] = $date;
339 }
340 $joinDate = CRM_Utils_Request::retrieve('join', 'Date',
341 CRM_Core_DAO::$_nullObject
342 );
343 if ($joinDate) {
344 list($date) = CRM_Utils_Date::setDateDefaults($joinDate);
345 $this->_formValues['member_join_date_low'] = $this->_defaults['member_join_date_low'] = $date;
346 }
347
348 $joinEndDate = CRM_Utils_Request::retrieve('joinEnd', 'Date',
349 CRM_Core_DAO::$_nullObject
350 );
351 if ($joinEndDate) {
352 list($date) = CRM_Utils_Date::setDateDefaults($joinEndDate);
353 $this->_formValues['member_join_date_high'] = $this->_defaults['member_join_date_high'] = $date;
354 }
355
356 $this->_limit = CRM_Utils_Request::retrieve('limit', 'Positive',
357 $this
358 );
359
360 //LCD also allow restrictions to membership owner via GET
361 $owner = CRM_Utils_Request::retrieve('owner', 'String', CRM_Core_DAO::$_nullObject);
362 if ($owner) {
363 $this->_formValues['member_is_primary'] = $this->_defaults['member_is_primary'] = 2;
364 }
365 }
366
367 /**
368 * Return a descriptive name for the page, used in wizard header
369 *
370 * @return string
371 */
372 public function getTitle() {
373 return ts('Find Memberships');
374 }
375
376 }