bdfcec58d5a7911c2bc21ed1a273d9391a2b9505
[civicrm-core.git] / CRM / Contact / Form / Search / Criteria.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
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 */
33 class CRM_Contact_Form_Search_Criteria {
34 /**
35 * @param CRM_Core_Form $form
36 */
37 public static function basic(&$form) {
38 $form->addElement('hidden', 'hidden_basic', 1);
39
40 if ($form->_searchOptions['contactType']) {
41 $contactTypes = CRM_Contact_BAO_ContactType::getSelectElements();
42
43 if ($contactTypes) {
44 $form->add('select', 'contact_type', ts('Contact Type(s)'), $contactTypes, FALSE,
45 array('id' => 'contact_type', 'multiple' => 'multiple', 'class' => 'crm-select2', 'style' => 'width: 100%;')
46 );
47 }
48 }
49
50 if ($form->_searchOptions['groups']) {
51 // multiselect for groups
52 if ($form->_group) {
53 // Arrange groups into hierarchical listing (child groups follow their parents and have indentation spacing in title)
54 $groupHierarchy = CRM_Contact_BAO_Group::getGroupsHierarchy($form->_group, NULL, '&nbsp;&nbsp;', TRUE);
55
56 $form->add('select', 'group', ts('Groups'), $groupHierarchy, FALSE,
57 array('id' => 'group', 'multiple' => 'multiple', 'class' => 'crm-select2')
58 );
59 $groupOptions = CRM_Core_BAO_OptionValue::getOptionValuesAssocArrayFromName('group_type');
60 $form->add('select', 'group_type', ts('Group Types'), $groupOptions, FALSE,
61 array('id' => 'group_type', 'multiple' => 'multiple', 'class' => 'crm-select2')
62 );
63 $form->add('hidden', 'group_search_selected', 'group');
64 }
65 }
66
67 if ($form->_searchOptions['tags']) {
68 // multiselect for categories
69 $contactTags = CRM_Core_BAO_Tag::getTags();
70
71 if ($contactTags) {
72 $form->add('select', 'contact_tags', ts('Tags'), $contactTags, FALSE,
73 array('id' => 'contact_tags', 'multiple' => 'multiple', 'class' => 'crm-select2', 'style' => 'width: 100%;')
74 );
75 }
76
77 $parentNames = CRM_Core_BAO_Tag::getTagSet('civicrm_contact');
78 CRM_Core_Form_Tag::buildQuickForm($form, $parentNames, 'civicrm_contact', NULL, TRUE, FALSE);
79
80 $used_for = CRM_Core_OptionGroup::values('tag_used_for');
81 $tagsTypes = array();
82 $showAllTagTypes = FALSE;
83 foreach ($used_for as $key => $value) {
84 //check tags for every type and find if there are any defined
85 $tags = CRM_Core_BAO_Tag::getTagsUsedFor($key, FALSE, TRUE, NULL);
86 // check if there are tags other than contact type, if no - keep checkbox hidden on adv search
87 // we will hide searching contact by attachments tags until it will be implemented in core
88 if (count($tags) && $key != 'civicrm_file' && $key != 'civicrm_contact') {
89 //if tags exists then add type to display in adv search form help text
90 $tagsTypes[] = ts($value);
91 $showAllTagTypes = TRUE;
92 }
93 }
94 $tagTypesText = implode(" or ", $tagsTypes);
95 if ($showAllTagTypes) {
96 $form->add('checkbox', 'all_tag_types', ts('Include tags used for %1', array(1 => $tagTypesText)));
97 $form->add('hidden', 'tag_types_text', $tagTypesText);
98 }
99 }
100
101 // add text box for last name, first name, street name, city
102 $form->addElement('text', 'sort_name', ts('Find...'), CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Contact', 'sort_name'));
103
104 // add text box for last name, first name, street name, city
105 $form->add('text', 'email', ts('Contact Email'), CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Contact', 'sort_name'));
106
107 //added contact source
108 $form->add('text', 'contact_source', ts('Contact Source'), CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Contact', 'contact_source'));
109
110 //added job title
111 $form->addElement('text', 'job_title', ts('Job Title'), CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Contact', 'job_title'));
112
113 //added internal ID
114 $form->add('number', 'contact_id', ts('Contact ID'), CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Contact', 'id') + array('min' => 1));
115 $form->addRule('contact_id', ts('Please enter valid Contact ID'), 'positiveInteger');
116
117 //added external ID
118 $form->addElement('text', 'external_identifier', ts('External ID'), CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Contact', 'external_identifier'));
119
120 if (CRM_Core_Permission::check('access deleted contacts') and Civi::settings()->get('contact_undelete')) {
121 $form->add('checkbox', 'deleted_contacts', ts('Search in Trash') . '<br />' . ts('(deleted contacts)'));
122 }
123
124 // add checkbox for cms users only
125 $form->addYesNo('uf_user', ts('CMS User?'), TRUE);
126
127 // tag all search
128 $form->add('text', 'tag_search', ts('All Tags'));
129
130 // add search profiles
131
132 // FIXME: This is probably a part of profiles - need to be
133 // FIXME: eradicated from here when profiles are reworked.
134 $types = array('Participant', 'Contribution', 'Membership');
135
136 // get component profiles
137 $componentProfiles = array();
138 $componentProfiles = CRM_Core_BAO_UFGroup::getProfiles($types);
139
140 $ufGroups = CRM_Core_BAO_UFGroup::getModuleUFGroup('Search Profile', 1);
141 $accessibleUfGroups = CRM_Core_Permission::ufGroup(CRM_Core_Permission::VIEW);
142
143 $searchProfiles = array();
144 foreach ($ufGroups as $key => $var) {
145 if (!array_key_exists($key, $componentProfiles) && in_array($key, $accessibleUfGroups)) {
146 $searchProfiles[$key] = $var['title'];
147 }
148 }
149
150 $form->add('select',
151 'uf_group_id',
152 ts('Search Views'),
153 array(
154 '0' => ts('- default view -'),
155 ) + $searchProfiles,
156 FALSE,
157 array('class' => 'crm-select2')
158 );
159
160 $componentModes = CRM_Contact_Form_Search::getModeSelect();
161
162 // unset contributions or participants if user does not have
163 // permission on them
164 if (!CRM_Core_Permission::access('CiviContribute')) {
165 unset($componentModes['2']);
166 }
167
168 if (!CRM_Core_Permission::access('CiviEvent')) {
169 unset($componentModes['3']);
170 }
171
172 if (!CRM_Core_Permission::access('CiviMember')) {
173 unset($componentModes['5']);
174 }
175
176 if (!CRM_Core_Permission::check('view all activities')) {
177 unset($componentModes['4']);
178 }
179
180 if (count($componentModes) > 1) {
181 $form->add('select',
182 'component_mode',
183 ts('Display Results As'),
184 $componentModes,
185 FALSE,
186 array('class' => 'crm-select2')
187 );
188 }
189
190 $form->addRadio(
191 'operator',
192 ts('Search Operator'),
193 array(
194 'AND' => ts('AND'),
195 'OR' => ts('OR'),
196 ),
197 array('allowClear' => FALSE)
198 );
199
200 // add the option to display relationships
201 $rTypes = CRM_Core_PseudoConstant::relationshipType();
202 $rSelect = array('' => ts('- Select Relationship Type-'));
203 foreach ($rTypes as $rid => $rValue) {
204 if ($rValue['label_a_b'] == $rValue['label_b_a']) {
205 $rSelect[$rid] = $rValue['label_a_b'];
206 }
207 else {
208 $rSelect["{$rid}_a_b"] = $rValue['label_a_b'];
209 $rSelect["{$rid}_b_a"] = $rValue['label_b_a'];
210 }
211 }
212
213 $form->addElement('select',
214 'display_relationship_type',
215 ts('Display Results as Relationship'),
216 $rSelect,
217 array('class' => 'crm-select2')
218 );
219
220 // checkboxes for DO NOT phone, email, mail
221 // we take labels from SelectValues
222 $t = CRM_Core_SelectValues::privacy();
223 $form->add('select',
224 'privacy_options',
225 ts('Privacy'),
226 $t,
227 FALSE,
228 array(
229 'id' => 'privacy_options',
230 'multiple' => 'multiple',
231 'class' => 'crm-select2',
232 )
233 );
234
235 $form->addElement('select',
236 'privacy_operator',
237 ts('Operator'),
238 array(
239 'OR' => ts('OR'),
240 'AND' => ts('AND'),
241 )
242 );
243
244 $options = array(
245 1 => ts('Exclude'),
246 2 => ts('Include by Privacy Option(s)'),
247 );
248 $form->addRadio('privacy_toggle', ts('Privacy Options'), $options, array('allowClear' => FALSE));
249
250 // preferred communication method
251
252 $onHold[] = $form->createElement('advcheckbox', 'on_hold', NULL, '');
253 $form->addGroup($onHold, 'email_on_hold', ts('Email On Hold'));
254
255 $form->addSelect('preferred_communication_method',
256 array('entity' => 'contact', 'multiple' => 'multiple', 'label' => ts('Preferred Communication Method'), 'option_url' => NULL, 'placeholder' => ts('- any -')));
257
258 //CRM-6138 Preferred Language
259 $form->addSelect('preferred_language', array('class' => 'twenty', 'context' => 'search'));
260
261 // Phone search
262 $form->addElement('text', 'phone_numeric', ts('Phone'), CRM_Core_DAO::getAttribute('CRM_Core_DAO_Phone', 'phone'));
263 $locationType = CRM_Core_PseudoConstant::get('CRM_Core_DAO_Address', 'location_type_id');
264 $phoneType = CRM_Core_PseudoConstant::get('CRM_Core_DAO_Phone', 'phone_type_id');
265 $form->add('select', 'phone_location_type_id', ts('Phone Location'), array('' => ts('- any -')) + $locationType, FALSE, array('class' => 'crm-select2'));
266 $form->add('select', 'phone_phone_type_id', ts('Phone Type'), array('' => ts('- any -')) + $phoneType, FALSE, array('class' => 'crm-select2'));
267 }
268
269
270 /**
271 * @param CRM_Core_Form $form
272 */
273 public static function location(&$form) {
274 $config = CRM_Core_Config::singleton();
275 // Build location criteria based on _submitValues if
276 // available; otherwise, use $form->_formValues.
277 $formValues = $form->_submitValues;
278
279 if (empty($formValues) && !empty($form->_formValues)) {
280 $formValues = $form->_formValues;
281 }
282
283 $form->addElement('hidden', 'hidden_location', 1);
284
285 $addressOptions = CRM_Core_BAO_Setting::valueOptions(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
286 'address_options', TRUE, NULL, TRUE
287 );
288
289 $attributes = CRM_Core_DAO::getAttribute('CRM_Core_DAO_Address');
290
291 $elements = array(
292 'street_address' => array(ts('Street Address'), $attributes['street_address'], NULL, NULL),
293 'city' => array(ts('City'), $attributes['city'], NULL, NULL),
294 'postal_code' => array(ts('Postal Code'), $attributes['postal_code'], NULL, NULL),
295 'country' => array(ts('Country'), $attributes['country_id'], 'country', FALSE),
296 'state_province' => array(ts('State/Province'), $attributes['state_province_id'], 'stateProvince', TRUE),
297 'county' => array(ts('County'), $attributes['county_id'], 'county', TRUE),
298 'address_name' => array(ts('Address Name'), $attributes['address_name'], NULL, NULL),
299 'street_number' => array(ts('Street Number'), $attributes['street_number'], NULL, NULL),
300 'street_name' => array(ts('Street Name'), $attributes['street_name'], NULL, NULL),
301 'street_unit' => array(ts('Apt/Unit/Suite'), $attributes['street_unit'], NULL, NULL),
302 );
303
304 $parseStreetAddress = CRM_Utils_Array::value('street_address_parsing', $addressOptions, 0);
305 $form->assign('parseStreetAddress', $parseStreetAddress);
306 foreach ($elements as $name => $v) {
307 list($title, $attributes, $select, $multiSelect) = $v;
308
309 if (in_array($name,
310 array('street_number', 'street_name', 'street_unit')
311 )) {
312 if (!$parseStreetAddress) {
313 continue;
314 }
315 }
316 elseif (!$addressOptions[$name]) {
317 continue;
318 }
319
320 if (!$attributes) {
321 $attributes = $attributes[$name];
322 }
323
324 if ($select) {
325 if ($select == 'stateProvince' || $select == 'county') {
326 $element = $form->addChainSelect($name);
327 }
328 else {
329 $selectElements = array('' => ts('- any -')) + CRM_Core_PseudoConstant::$select();
330 $element = $form->add('select', $name, $title, $selectElements, FALSE, array('class' => 'crm-select2'));
331 }
332 if ($multiSelect) {
333 $element->setMultiple(TRUE);
334 }
335 }
336 else {
337 $form->addElement('text', $name, $title, $attributes);
338 }
339
340 if ($addressOptions['postal_code']) {
341 $attr = array('class' => 'six') + (array) CRM_Utils_Array::value('postal_code', $attributes);
342 $form->addElement('text', 'postal_code_low', NULL, $attr + array('placeholder' => ts('From')));
343 $form->addElement('text', 'postal_code_high', NULL, $attr + array('placeholder' => ts('To')));
344 }
345 }
346
347 // extend addresses with proximity search
348 if (!empty($config->geocodeMethod)) {
349 $form->addElement('text', 'prox_distance', ts('Find contacts within'), array('class' => 'six'));
350 $form->addElement('select', 'prox_distance_unit', NULL, array(
351 'miles' => ts('Miles'),
352 'kilos' => ts('Kilometers'),
353 ));
354 $form->addRule('prox_distance', ts('Please enter positive number as a distance'), 'numeric');
355 }
356
357 $form->addSelect('world_region', array('entity' => 'address', 'context' => 'search'));
358
359 // select for location type
360 $locationType = CRM_Core_PseudoConstant::get('CRM_Core_DAO_Address', 'location_type_id');
361 $form->add('select', 'location_type', ts('Address Location'), $locationType, FALSE, array(
362 'multiple' => TRUE,
363 'class' => 'crm-select2',
364 'placeholder' => ts('Primary'),
365 ));
366
367 // custom data extending addresses -
368 $extends = array('Address');
369 $groupDetails = CRM_Core_BAO_CustomGroup::getGroupDetail(NULL, TRUE, $extends);
370 if ($groupDetails) {
371 $form->assign('addressGroupTree', $groupDetails);
372 foreach ($groupDetails as $group) {
373 foreach ($group['fields'] as $field) {
374 $elementName = 'custom_' . $field['id'];
375 CRM_Core_BAO_CustomField::addQuickFormElement($form,
376 $elementName,
377 $field['id'],
378 FALSE, FALSE, TRUE
379 );
380 }
381 }
382 }
383 }
384
385 /**
386 * @param CRM_Core_Form $form
387 */
388 public static function activity(&$form) {
389 $form->add('hidden', 'hidden_activity', 1);
390 CRM_Activity_BAO_Query::buildSearchForm($form);
391 }
392
393 /**
394 * @param CRM_Core_Form $form
395 */
396 public static function changeLog(&$form) {
397 $form->add('hidden', 'hidden_changeLog', 1);
398
399 // block for change log
400 $form->addElement('text', 'changed_by', ts('Modified By'), NULL);
401
402 $dates = array(1 => ts('Added'), 2 => ts('Modified'));
403 $form->addRadio('log_date', NULL, $dates, array('allowClear' => TRUE), '<br />');
404
405 CRM_Core_Form_Date::buildDateRange($form, 'log_date', 1, '_low', '_high', ts('From'), FALSE, FALSE);
406 }
407
408 /**
409 * @param CRM_Core_Form $form
410 */
411 public static function task(&$form) {
412 $form->add('hidden', 'hidden_task', 1);
413 }
414
415 /**
416 * @param $form
417 */
418 public static function relationship(&$form) {
419 $form->add('hidden', 'hidden_relationship', 1);
420
421 $allRelationshipType = array();
422 $allRelationshipType = CRM_Contact_BAO_Relationship::getContactRelationshipType(NULL, NULL, NULL, NULL, TRUE);
423 $form->add('select', 'relation_type_id', ts('Relationship Type'), array('' => ts('- select -')) + $allRelationshipType, FALSE, array('class' => 'crm-select2'));
424 $form->addElement('text', 'relation_target_name', ts('Target Contact'), CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Contact', 'sort_name'));
425 // relation status
426 $relStatusOption = array(ts('Active'), ts('Inactive'), ts('All'));
427 $form->addRadio('relation_status', ts('Relationship Status'), $relStatusOption);
428 $form->setDefaults(array('relation_status' => 0));
429 // relation permission
430 $relPermissionOption = array(ts('Any'), ts('Yes'), ts('No'));
431 $form->addRadio('relation_permission', ts('Permissioned Relationship?'), $relPermissionOption);
432 $form->setDefaults(array('relation_permission' => 0));
433
434 //add the target group
435 if ($form->_group) {
436 $form->add('select', 'relation_target_group', ts('Target Contact(s) in Group'), $form->_group, FALSE,
437 array('id' => 'relation_target_group', 'multiple' => 'multiple', 'class' => 'crm-select2')
438 );
439 }
440 CRM_Core_Form_Date::buildDateRange($form, 'relation_start_date', 1, '_low', '_high', ts('From:'), FALSE, FALSE);
441 CRM_Core_Form_Date::buildDateRange($form, 'relation_end_date', 1, '_low', '_high', ts('From:'), FALSE, FALSE);
442
443 // Add reltionship dates
444 CRM_Core_Form_Date::buildDateRange($form, 'relation_date', 1, '_low', '_high', ts('From:'), FALSE, FALSE);
445
446 // add all the custom searchable fields
447 $relationship = array('Relationship');
448 $groupDetails = CRM_Core_BAO_CustomGroup::getGroupDetail(NULL, TRUE, $relationship);
449 if ($groupDetails) {
450 $form->assign('relationshipGroupTree', $groupDetails);
451 foreach ($groupDetails as $group) {
452 foreach ($group['fields'] as $field) {
453 $fieldId = $field['id'];
454 $elementName = 'custom_' . $fieldId;
455 CRM_Core_BAO_CustomField::addQuickFormElement($form,
456 $elementName,
457 $fieldId,
458 FALSE, FALSE, TRUE
459 );
460 }
461 }
462 }
463 }
464
465 /**
466 * @param $form
467 */
468 public static function demographics(&$form) {
469 $form->add('hidden', 'hidden_demographics', 1);
470 // radio button for gender
471 $genderOptions = array();
472 $gender = CRM_Core_PseudoConstant::get('CRM_Contact_DAO_Contact', 'gender_id');
473 foreach ($gender as $key => $var) {
474 $genderOptions[$key] = $form->createElement('radio', NULL,
475 ts('Gender'), $var, $key,
476 array('id' => "civicrm_gender_{$var}_{$key}")
477 );
478 }
479 $form->addGroup($genderOptions, 'gender_id', ts('Gender'))->setAttribute('allowClear', TRUE);
480
481 $form->add('text', 'age_low', ts('Min Age'), array('size' => 6));
482 $form->addRule('age_low', ts('Please enter a positive integer'), 'positiveInteger');
483 $form->add('text', 'age_high', ts('Max Age'), array('size' => 6));
484 $form->addRule('age_high', ts('Please enter a positive integer'), 'positiveInteger');
485 $form->addDate('age_asof_date', ts('Age as of Date'), FALSE, array('formatType' => 'searchDate'));
486
487 CRM_Core_Form_Date::buildDateRange($form, 'birth_date', 1, '_low', '_high', ts('From'), FALSE, FALSE, 'birth');
488
489 CRM_Core_Form_Date::buildDateRange($form, 'deceased_date', 1, '_low', '_high', ts('From'), FALSE, FALSE, 'birth');
490
491 // radio button for is_deceased
492 $form->addYesNo('is_deceased', ts('Deceased'), TRUE);
493 }
494
495 /**
496 * @param $form
497 */
498 public static function notes(&$form) {
499 $form->add('hidden', 'hidden_notes', 1);
500
501 $options = array(
502 2 => ts('Body Only'),
503 3 => ts('Subject Only'),
504 6 => ts('Both'),
505 );
506 $form->addRadio('note_option', '', $options);
507
508 $form->addElement('text', 'note', ts('Note Text'), CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Contact', 'sort_name'));
509
510 $form->setDefaults(array('note_option' => 6));
511 }
512
513 /**
514 * Generate the custom Data Fields based for those with is_searchable = 1.
515 *
516 * @param CRM_Contact_Form_Search $form
517 */
518 public static function custom(&$form) {
519 $form->add('hidden', 'hidden_custom', 1);
520 $extends = array_merge(array('Contact', 'Individual', 'Household', 'Organization'),
521 CRM_Contact_BAO_ContactType::subTypes()
522 );
523 $groupDetails = CRM_Core_BAO_CustomGroup::getGroupDetail(NULL, TRUE,
524 $extends
525 );
526
527 $form->assign('groupTree', $groupDetails);
528
529 foreach ($groupDetails as $key => $group) {
530 $_groupTitle[$key] = $group['name'];
531 CRM_Core_ShowHideBlocks::links($form, $group['name'], '', '');
532
533 foreach ($group['fields'] as $field) {
534 $fieldId = $field['id'];
535 $elementName = 'custom_' . $fieldId;
536 CRM_Core_BAO_CustomField::addQuickFormElement($form,
537 $elementName,
538 $fieldId,
539 FALSE, FALSE, TRUE
540 );
541 }
542 }
543 }
544
545 /**
546 * @param $form
547 */
548 public static function CiviCase(&$form) {
549 //Looks like obsolete code, since CiviCase is a component, but might be used by HRD
550 $form->add('hidden', 'hidden_CiviCase', 1);
551 CRM_Case_BAO_Query::buildSearchForm($form);
552 }
553
554 }