Merge pull request #3317 from eileenmcnaughton/CRM-14197-postprocesfn
[civicrm-core.git] / CRM / Contact / Form / Search / Custom / ZipCodeRange.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
06b69b18 4 | CiviCRM version 4.5 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35class CRM_Contact_Form_Search_Custom_ZipCodeRange extends CRM_Contact_Form_Search_Custom_Base implements CRM_Contact_Form_Search_Interface {
86538308
EM
36 /**
37 * @param $formValues
38 */
6a488035
TO
39 function __construct(&$formValues) {
40 parent::__construct($formValues);
41
42 $this->_columns = array(
43 ts('Contact Id') => 'contact_id',
44 ts('Name') => 'sort_name',
45 ts('Email') => 'email',
46 ts('Zip') => 'postal_code',
47 );
48 }
49
86538308
EM
50 /**
51 * @param $form
52 */
6a488035
TO
53 function buildForm(&$form) {
54 $form->add('text',
55 'postal_code_low',
56 ts('Postal Code Start'),
57 TRUE
58 );
59
60 $form->add('text',
61 'postal_code_high',
62 ts('Postal Code End'),
63 TRUE
64 );
65
66 /**
67 * You can define a custom title for the search form
68 */
69 $this->setTitle('Zip Code Range Search');
70
71 /**
72 * if you are using the standard template, this array tells the template what elements
73 * are part of the search criteria
74 */
75 $form->assign('elements', array('postal_code_low', 'postal_code_high'));
76 }
77
86538308
EM
78 /**
79 * @return array
80 */
6a488035
TO
81 function summary() {
82 $summary = array();
83 return $summary;
84 }
85
86538308
EM
86 /**
87 * @param int $offset
88 * @param int $rowcount
89 * @param null $sort
90 * @param bool $includeContactIDs
91 * @param bool $justIDs
92 *
93 * @return string
94 */
6a488035
TO
95 function all($offset = 0, $rowcount = 0, $sort = NULL,
96 $includeContactIDs = FALSE, $justIDs = FALSE
97 ) {
98 if ($justIDs) {
99 $selectClause = "contact_a.id as contact_id";
100 }
101 else {
102 $selectClause = "
103contact_a.id as contact_id ,
104contact_a.sort_name as sort_name ,
105email.email as email ,
106address.postal_code as postal_code
107";
108 }
109 return $this->sql($selectClause,
110 $offset, $rowcount, $sort,
111 $includeContactIDs, NULL
112 );
113 }
114
86538308
EM
115 /**
116 * @return string
117 */
6a488035
TO
118 function from() {
119 return "
120FROM civicrm_contact contact_a
121LEFT JOIN civicrm_address address ON ( address.contact_id = contact_a.id AND
122 address.is_primary = 1 )
123LEFT JOIN civicrm_email email ON ( email.contact_id = contact_a.id AND
124 email.is_primary = 1 )
125";
126 }
127
86538308
EM
128 /**
129 * @param bool $includeContactIDs
130 *
131 * @return string
132 */
6a488035
TO
133 function where($includeContactIDs = FALSE) {
134 $params = array();
135
136 $low = CRM_Utils_Array::value('postal_code_low',
137 $this->_formValues
138 );
139 $high = CRM_Utils_Array::value('postal_code_high',
140 $this->_formValues
141 );
142 if ($low == NULL || $high == NULL) {
143 CRM_Core_Error::statusBounce(ts('Please provide start and end postal codes'),
144 CRM_Utils_System::url('civicrm/contact/search/custom',
145 "reset=1&csid={$this->_formValues['customSearchID']}",
146 FALSE, NULL, FALSE, TRUE
147 )
148 );
149 }
150
151 $where = "ROUND(address.postal_code) >= %1 AND ROUND(address.postal_code) <= %2";
152 $params = array(1 => array(trim($low), 'Integer'),
153 2 => array(trim($high), 'Integer'),
154 );
155
156 return $this->whereClause($where, $params);
157 }
158
86538308
EM
159 /**
160 * @return array
161 */
6a488035
TO
162 function setDefaultValues() {
163 return array();
164 }
165
86538308
EM
166 /**
167 * @return string
168 */
6a488035
TO
169 function templateFile() {
170 return 'CRM/Contact/Form/Search/Custom.tpl';
171 }
172
86538308
EM
173 /**
174 * @param $title
175 */
6a488035
TO
176 function setTitle($title) {
177 if ($title) {
178 CRM_Utils_System::setTitle($title);
179 }
180 else {
181 CRM_Utils_System::setTitle(ts('Search'));
182 }
183 }
184}
185