_columns = array( // If possible, don't use aliases for the columns you select. // You can prefix columns with table aliases, if needed. // // If you don't do this, selecting individual records from the // custom search result won't work if your results are sorted on the // aliased colums. // (This is why we map Contact ID on contact_a.id, and not on contact_id). ts('Contact ID') => 'contact_a.id', ts('Address') => 'street_address', ts('Contact Type') => 'contact_type', ts('Name') => 'sort_name', // You need to provide a table alias if there field exists in multiple // tables of your join. Name is also a field of address, so we prefix it // by state_province. // If you don't do this, the patch of CRM-16587 might cause database // errors. ts('State') => 'state_province.name', ); } /** * @param CRM_Core_Form $form */ public function buildForm(&$form) { $groups = array('' => ts('- select group -')) + CRM_Core_PseudoConstant::nestedGroup(FALSE); $form->addElement('select', 'group_id', ts('Group'), $groups, array('class' => 'crm-select2 huge')); /** * if you are using the standard template, this array tells the template what elements * are part of the search criteria */ $form->assign('elements', array('group_id')); } /** * @param int $offset * @param int $rowcount * @param null $sort * @param bool $returnSQL * * @return string */ public function contactIDs($offset = 0, $rowcount = 0, $sort = NULL, $returnSQL = FALSE) { return $this->all($offset, $rowcount, $sort, FALSE, TRUE); } /** * @param int $offset * @param int $rowcount * @param null $sort * @param bool $includeContactIDs * @param bool $justIDs * * @return string */ public function all( $offset = 0, $rowcount = 0, $sort = NULL, $includeContactIDs = FALSE, $justIDs = FALSE ) { if ($justIDs) { $selectClause = "contact_a.id as contact_id"; // Don't change sort order when $justIDs is TRUE, see CRM-14920. } else { // YOU NEED to select contact_a.id as contact_id, if you want to be able // to select individual records from the result. // But if you want to display the contact ID in your result set, you // also need to select contact_a.id. This is because of the patch we // use for CRM-16587. $selectClause = " DISTINCT contact_a.id as contact_id , contact_a.id, contact_a.contact_type as contact_type, contact_a.sort_name as sort_name, address.street_address, state_province.name "; } return $this->sql($selectClause, $offset, $rowcount, $sort, $includeContactIDs, NULL ); } /** * @return string */ public function from() { $this->buildACLClause('contact_a'); $from = " FROM civicrm_group_contact as cgc, civicrm_contact as contact_a LEFT JOIN civicrm_address address ON (address.contact_id = contact_a.id AND address.is_primary = 1 ) LEFT JOIN civicrm_state_province state_province ON state_province.id = address.state_province_id {$this->_aclFrom} "; return $from; } /** * @param bool $includeContactIDs * * @return string */ public function where($includeContactIDs = FALSE) { $params = array(); $count = 1; $clause = array(); $groupID = CRM_Utils_Array::value('group_id', $this->_formValues ); if ($groupID) { $params[$count] = array($groupID, 'Integer'); $clause[] = "cgc.group_id = %{$count}"; } $clause[] = "cgc.status = 'Added'"; $clause[] = "contact_a.id = IF( EXISTS(select cr.id from civicrm_relationship cr where (cr.contact_id_a = cgc.contact_id AND (cr.relationship_type_id = 7 OR cr.relationship_type_id = 6))), (select cr.contact_id_b from civicrm_relationship cr where (cr.contact_id_a = cgc.contact_id AND (cr.relationship_type_id = 7 OR cr.relationship_type_id = 6))), cgc.contact_id )"; $clause[] = "contact_a.contact_type IN ('Individual','Household')"; if ($this->_aclWhere) { $clause[] = " {$this->_aclWhere} "; } if (!empty($clause)) { $where = implode(' AND ', $clause); } return $this->whereClause($where, $params); } /** * @return string */ public function templateFile() { return 'CRM/Contact/Form/Search/Custom.tpl'; } /** * @param string $tableAlias */ public function buildACLClause($tableAlias = 'contact') { list($this->_aclFrom, $this->_aclWhere) = CRM_Contact_BAO_Contact_Permission::cacheClause($tableAlias); } }