add('text', 'title', ts('Find'), CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Group', 'title') ); $this->add('text', 'created_by', ts('Created By'), CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Group', 'title') ); $groupTypes = CRM_Core_OptionGroup::values('group_type', TRUE); $config = CRM_Core_Config::singleton(); if ($config->userFramework == 'Joomla') { unset($groupTypes['Access Control']); } $this->addCheckBox('group_type', ts('Type'), $groupTypes, NULL, NULL, NULL, NULL, '   ' ); $this->add('select', 'visibility', ts('Visibility'), array('' => ts('- any visibility -')) + CRM_Core_SelectValues::ufVisibility(TRUE) ); $groupStatuses = array(ts('Enabled') => 1, ts('Disabled') => 2); $this->addCheckBox('group_status', ts('Status'), $groupStatuses, NULL, NULL, NULL, NULL, '   ' ); $this->addButtons(array( array( 'type' => 'refresh', 'name' => ts('Search'), 'isDefault' => TRUE, ), )); parent::buildQuickForm(); $this->assign('suppressForm', TRUE); } public function postProcess() { $params = $this->controller->exportValues($this->_name); $parent = $this->controller->getParent(); if (!empty($params)) { $fields = array('title', 'created_by', 'group_type', 'visibility', 'active_status', 'inactive_status'); foreach ($fields as $field) { if (isset($params[$field]) && !CRM_Utils_System::isNull($params[$field]) ) { $parent->set($field, $params[$field]); } else { $parent->set($field, NULL); } } } } }