Ian province abbreviation patch - issue 724
[civicrm-core.git] / CRM / Contact / Form / Search / Custom / Basic.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 |
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
e7112fa7 31 * @copyright CiviCRM LLC (c) 2004-2015
6a488035
TO
32 */
33class CRM_Contact_Form_Search_Custom_Basic extends CRM_Contact_Form_Search_Custom_Base implements CRM_Contact_Form_Search_Interface {
34
430ae6dd 35 protected $_query;
d14ccbdc
SL
36 protected $_aclFrom = NULL;
37 protected $_aclWhere = NULL;
430ae6dd 38
86538308 39 /**
5a409b50 40 * Class constructor.
41 *
42 * @param array $formValues
86538308 43 */
00be9182 44 public function __construct(&$formValues) {
6a488035
TO
45 parent::__construct($formValues);
46
47 $this->normalize();
48 $this->_columns = array(
ba8f6a69 49 '' => 'contact_type',
6a488035
TO
50 ts('Name') => 'sort_name',
51 ts('Address') => 'street_address',
52 ts('City') => 'city',
53 ts('State') => 'state_province',
54 ts('Postal') => 'postal_code',
55 ts('Country') => 'country',
56 ts('Email') => 'email',
57 ts('Phone') => 'phone',
58 );
59
60 $params = CRM_Contact_BAO_Query::convertFormValues($this->_formValues);
61 $returnProperties = array();
62 $returnProperties['contact_sub_type'] = 1;
63
64 $addressOptions = CRM_Core_BAO_Setting::valueOptions(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
65 'address_options', TRUE, NULL, TRUE
66 );
67
68 foreach ($this->_columns as $name => $field) {
69 if (in_array($field, array(
353ffa53
TO
70 'street_address',
71 'city',
72 'state_province',
73 'postal_code',
389bcebf 74 'country',
353ffa53
TO
75 )) && empty($addressOptions[$field])
76 ) {
6a488035
TO
77 unset($this->_columns[$name]);
78 continue;
79 }
80 $returnProperties[$field] = 1;
81 }
82
83 $this->_query = new CRM_Contact_BAO_Query($params, $returnProperties, NULL,
84 FALSE, FALSE, 1, FALSE, FALSE
85 );
86 }
87
88 /**
5a409b50 89 * Normalize the form values to make it look similar to the advanced form values.
6a488035 90 *
5a409b50 91 * This prevents a ton of work downstream and allows us to use the same code for
92 * multiple purposes (queries, save/edit etc)
6a488035 93 */
00be9182 94 public function normalize() {
6a488035
TO
95 $contactType = CRM_Utils_Array::value('contact_type', $this->_formValues);
96 if ($contactType && !is_array($contactType)) {
97 unset($this->_formValues['contact_type']);
98 $this->_formValues['contact_type'][$contactType] = 1;
99 }
100
101 $group = CRM_Utils_Array::value('group', $this->_formValues);
102 if ($group && !is_array($group)) {
103 unset($this->_formValues['group']);
104 $this->_formValues['group'][$group] = 1;
105 }
106
107 $tag = CRM_Utils_Array::value('tag', $this->_formValues);
108 if ($tag && !is_array($tag)) {
109 unset($this->_formValues['tag']);
110 $this->_formValues['tag'][$tag] = 1;
111 }
112
389bcebf 113 return NULL;
6a488035
TO
114 }
115
86538308 116 /**
c490a46a 117 * @param CRM_Core_Form $form
86538308 118 */
00be9182 119 public function buildForm(&$form) {
b500fbea
EM
120 //@todo FIXME - using the CRM_Core_DAO::VALUE_SEPARATOR creates invalid html - if you can find the form
121 // this is loaded onto then replace with something like '__' & test
122 $separator = CRM_Core_DAO::VALUE_SEPARATOR;
123 $contactTypes = array('' => ts('- any contact type -')) + CRM_Contact_BAO_ContactType::getSelectElements(FALSE, TRUE, $separator);
24431f7b 124 $form->add('select', 'contact_type', ts('Find...'), $contactTypes, FALSE, array('class' => 'crm-select2 huge'));
6a488035
TO
125
126 // add select for groups
24431f7b
CW
127 $group = array('' => ts('- any group -')) + CRM_Core_PseudoConstant::nestedGroup();
128 $form->addElement('select', 'group', ts('in'), $group, array('class' => 'crm-select2 huge'));
6a488035
TO
129
130 // add select for categories
cd43c5e3 131 $tag = array('' => ts('- any tag -')) + CRM_Core_PseudoConstant::get('CRM_Core_DAO_EntityTag', 'tag_id', array('onlyActive' => FALSE));
24431f7b 132 $form->addElement('select', 'tag', ts('Tagged'), $tag, array('class' => 'crm-select2 huge'));
6a488035
TO
133
134 // text for sort_name
135 $form->add('text', 'sort_name', ts('Name'));
136
137 $form->assign('elements', array('sort_name', 'contact_type', 'group', 'tag'));
138 }
139
86538308
EM
140 /**
141 * @return CRM_Contact_DAO_Contact
142 */
00be9182 143 public function count() {
6a488035
TO
144 return $this->_query->searchQuery(0, 0, NULL, TRUE);
145 }
146
86538308
EM
147 /**
148 * @param int $offset
149 * @param int $rowCount
150 * @param null $sort
151 * @param bool $includeContactIDs
152 * @param bool $justIDs
153 *
154 * @return CRM_Contact_DAO_Contact
155 */
389bcebf 156 public function all(
6a488035
TO
157 $offset = 0,
158 $rowCount = 0,
159 $sort = NULL,
160 $includeContactIDs = FALSE,
161 $justIDs = FALSE
162 ) {
163 return $this->_query->searchQuery(
164 $offset,
165 $rowCount,
166 $sort,
167 FALSE,
168 $includeContactIDs,
169 FALSE,
170 $justIDs,
171 TRUE
172 );
173 }
174
86538308
EM
175 /**
176 * @return string
177 */
00be9182 178 public function from() {
d14ccbdc
SL
179 $this->buildACLClause('contact_a');
180 $from = $this->_query->_fromClause;
181 $from .= "{$this->_aclFrom}";
d14ccbdc 182 return $from;
6a488035
TO
183 }
184
86538308
EM
185 /**
186 * @param bool $includeContactIDs
187 *
188 * @return string|void
189 */
00be9182 190 public function where($includeContactIDs = FALSE) {
6a488035 191 if ($whereClause = $this->_query->whereClause()) {
47b8444f 192 if ($this->_aclWhere) {
b49db103 193 $whereClause .= " AND {$this->_aclWhere}";
47b8444f 194 }
6a488035
TO
195 return $whereClause;
196 }
197 return ' (1) ';
198 }
199
86538308
EM
200 /**
201 * @return string
202 */
00be9182 203 public function templateFile() {
6a488035
TO
204 return 'CRM/Contact/Form/Search/Basic.tpl';
205 }
6a488035 206
86538308
EM
207 /**
208 * @return CRM_Contact_BAO_Query
209 */
00be9182 210 public function getQueryObj() {
d9ab802d
PJ
211 return $this->_query;
212 }
96025800 213
d14ccbdc
SL
214 /**
215 * @param string $tableAlias
216 */
217 public function buildACLClause($tableAlias = 'contact') {
218 list($this->_aclFrom, $this->_aclWhere) = CRM_Contact_BAO_Contact_Permission::cacheClause($tableAlias);
219 }
220
232624b1 221}