3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.4 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
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. |
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. |
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 +--------------------------------------------------------------------+
31 * @copyright CiviCRM LLC (c) 2004-2013
37 * This class generates form components generic to all the contact types.
39 * It delegates the work to lower level subclasses and integrates the changes
40 * back in. It also uses a lot of functionality with the CRM API's, so any change
41 * made here could potentially affect the API etc. Be careful, be aware, use unit tests.
44 class CRM_Profile_Form_Search
extends CRM_Profile_Form
{
47 * pre processing work done here.
56 function preProcess() {
57 $this->_mode
= CRM_Profile_Form
::MODE_SEARCH
;
62 * Set the default form values
66 * @return array the default array reference
68 function setDefaultValues() {
70 // note we intentionally overwrite value since we use it as defaults
71 // and its all pass by value
72 // we need to figure out the type, so we can either set an array element
73 // or a scalar -- FIX ME sometime please
74 foreach ($_GET as $key => $value) {
75 if (substr($key, 0, 7) == 'custom_' ||
$key == "preferred_communication_method") {
76 if (strpos($value, CRM_Core_DAO
::VALUE_SEPARATOR
) !== FALSE) {
77 $v = explode(CRM_Core_DAO
::VALUE_SEPARATOR
, $value);
79 foreach ($v as $item) {
81 $value[$item] = $item;
86 elseif ($key == 'group' ||
$key == 'tag') {
87 $v = explode(',', $value);
89 foreach ($v as $item) {
93 elseif (in_array($key, array(
94 'birth_date', 'deceased_date'))) {
95 list($value) = CRM_Utils_Date
::setDateDefaults($value);
98 $defaults[$key] = $value;
104 * Function to actually build the form
109 public function buildQuickForm() {
110 // Is proximity search enabled for this profile?
111 $proxSearch = CRM_Core_DAO
::getFieldValue('CRM_Core_DAO_UFGroup',
113 'is_proximity_search', 'id'
116 CRM_Contact_Form_Task_ProximityCommon
::buildQuickForm($this, $proxSearch);
119 $this->addButtons(array(
122 'name' => ts('Search'),
127 parent
::buildQuickForm();
137 public function postProcess() {}