_mode = CRM_Profile_Form::MODE_SEARCH; parent::preProcess(); } /** * Set the default form values * * @access protected * * @return array the default array reference */ function setDefaultValues() { $defaults = array(); // note we intentionally overwrite value since we use it as defaults // and its all pass by value // we need to figure out the type, so we can either set an array element // or a scalar -- FIX ME sometime please foreach ($_GET as $key => $value) { if (substr($key, 0, 7) == 'custom_' || $key == "preferred_communication_method") { if (strpos($value, CRM_Core_DAO::VALUE_SEPARATOR) !== FALSE) { $v = explode(CRM_Core_DAO::VALUE_SEPARATOR, $value); $value = array(); foreach ($v as $item) { if ($item) { $value[$item] = $item; } } } } elseif ($key == 'group' || $key == 'tag') { $v = explode(',', $value); $value = array(); foreach ($v as $item) { $value[$item] = 1; } } elseif (in_array($key, array( 'birth_date', 'deceased_date'))) { list($value) = CRM_Utils_Date::setDateDefaults($value); } $defaults[$key] = $value; } return $defaults; } /** * Function to actually build the form * * @return void * @access public */ public function buildQuickForm() { // Is proximity search enabled for this profile? $proxSearch = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_UFGroup', $this->get('gid'), 'is_proximity_search', 'id' ); if ($proxSearch) { CRM_Contact_Form_Task_ProximityCommon::buildQuickForm($this, $proxSearch); } $this->addButtons(array( array( 'type' => 'refresh', 'name' => ts('Search'), 'isDefault' => TRUE, ), )); parent::buildQuickForm(); } /** * * * @access public * * @return void */ public function postProcess() {} }