Merge pull request #8498 from eileenmcnaughton/ajax
[civicrm-core.git] / CRM / Contact / Form / Task / ProximityCommon.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
fa938177 6 | Copyright CiviCRM LLC (c) 2004-2016 |
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
fa938177 31 * @copyright CiviCRM LLC (c) 2004-2016
6a488035
TO
32 */
33
34/**
424029e3 35 * This class provides the functionality to support Proximity Searches.
6a488035 36 */
d5f547f8 37class CRM_Contact_Form_Task_ProximityCommon {
6a488035
TO
38
39 /**
fe482240 40 * The context that we are working on.
6a488035
TO
41 *
42 * @var string
43 */
44 protected $_context;
45
46 /**
fe482240 47 * The groupId retrieved from the GET vars.
6a488035
TO
48 *
49 * @var int
50 */
51 protected $_id;
52
53 /**
fe482240 54 * The title of the group.
6a488035
TO
55 *
56 * @var string
57 */
58 protected $_title;
59
6a488035 60 /**
fe482240 61 * Build the form object.
6a488035 62 *
c927c151 63 * @param CRM_Core_Form $form
424029e3 64 * @param int $proxSearch
6a488035 65 */
d5f547f8 66 static public function buildQuickForm($form, $proxSearch) {
6a488035
TO
67 // is proximity search required (2) or optional (1)?
68 $proxRequired = ($proxSearch == 2 ? TRUE : FALSE);
69 $form->assign('proximity_search', TRUE);
70
71 $form->add('text', 'prox_street_address', ts('Street Address'), NULL, FALSE);
72
73 $form->add('text', 'prox_city', ts('City'), NULL, FALSE);
74
75 $form->add('text', 'prox_postal_code', ts('Postal Code'), NULL, FALSE);
76
c927c151 77 $form->addChainSelect('prox_state_province_id', array('required' => $proxRequired));
6a488035
TO
78
79 $country = array('' => ts('- select -')) + CRM_Core_PseudoConstant::country();
80 $form->add('select', 'prox_country_id', ts('Country'), $country, $proxRequired);
81
82 $form->add('text', 'prox_distance', ts('Distance'), NULL, $proxRequired);
83
84 $proxUnits = array('km' => ts('km'), 'miles' => ts('miles'));
85 $form->add('select', 'prox_distance_unit', ts('Units'), $proxUnits, $proxRequired);
86 // prox_distance_unit
87
6a488035
TO
88 $form->addFormRule(array('CRM_Contact_Form_Task_ProximityCommon', 'formRule'), $form);
89 }
90
91 /**
fe482240 92 * Global form rule.
6a488035 93 *
77c5b619
TO
94 * @param array $fields
95 * The input form values.
96 * @param array $files
97 * The uploaded files if any.
c490a46a 98 * @param CRM_Core_Form $form
6a488035 99 *
72b3a70c
CW
100 * @return bool|array
101 * true if no errors, else array of errors
6a488035 102 */
00be9182 103 public static function formRule($fields, $files, $form) {
6a488035
TO
104 $errors = array();
105 // If Distance is present, make sure state, country and city or postal code are populated.
a7488080 106 if (!empty($fields['prox_distance'])) {
8cc574cf 107 if (empty($fields['prox_state_province_id']) || empty($fields['prox_country_id'])) {
6a488035
TO
108 $errors["prox_state_province_id"] = ts("Country AND State/Province are required to search by distance.");
109 }
110 if (!CRM_Utils_Array::value('prox_postal_code', $fields) AND
111 !CRM_Utils_Array::value('prox_city', $fields)
112 ) {
113 $errors["prox_distance"] = ts("City OR Postal Code are required to search by distance.");
114 }
115 }
116
117 return empty($errors) ? TRUE : $errors;
118 }
119
120 /**
fe482240 121 * Set the default form values.
6a488035 122 *
c490a46a 123 * @param CRM_Core_Form $form
da6b46f4 124 *
a6c01b45
CW
125 * @return array
126 * the default array reference
6a488035 127 */
d5f547f8 128 static public function setDefaultValues($form) {
353ffa53
TO
129 $defaults = array();
130 $config = CRM_Core_Config::singleton();
6a488035
TO
131 $countryDefault = $config->defaultContactCountry;
132
133 if ($countryDefault) {
134 $defaults['prox_country_id'] = $countryDefault;
135 if ($countryDefault == '1228') {
136 $defaults['prox_distance_unit'] = 'miles';
137 }
138 else {
139 $defaults['prox_distance_unit'] = 'km';
140 }
141 }
142 $form->setDefaults($defaults);
143 return $defaults;
144 }
96025800 145
6a488035 146}