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