_columns = array( 'civicrm_contact' => array( 'dao' => 'CRM_Contact_DAO_Contact', 'fields' => array( 'sort_name' => array( 'title' => ts('Contact Name'), 'required' => TRUE, 'no_repeat' => TRUE, ), 'id' => array( 'no_display' => TRUE, 'required' => TRUE, ), ), 'grouping' => 'contact-fields', 'filters' => array( 'sort_name' => array( 'title' => ts('Contact Name'), 'operator' => 'like', ), 'gender_id' => array( 'title' => ts('Gender'), 'operatorType' => CRM_Report_Form::OP_MULTISELECT, 'options' => CRM_Core_PseudoConstant::get('CRM_Contact_DAO_Contact', 'gender_id'), ), 'id' => array( 'title' => ts('Contact ID'), 'no_display' => TRUE, ), ), ), 'civicrm_address' => array( 'dao' => 'CRM_Core_DAO_Address', 'filters' => array( 'country_id' => array( 'title' => ts('Country'), 'type' => CRM_Utils_Type::T_INT, 'operatorType' => CRM_Report_Form::OP_MULTISELECT, 'options' => CRM_Core_PseudoConstant::country(), ), 'state_province_id' => array( 'title' => ts('State/Province'), 'type' => CRM_Utils_Type::T_INT, 'operatorType' => CRM_Report_Form::OP_MULTISELECT, 'options' => CRM_Core_PseudoConstant::stateProvince(), ), ), ), 'civicrm_grant' => array( 'dao' => 'CRM_Grant_DAO_Grant', 'fields' => array( 'grant_type_id' => array( 'name' => 'grant_type_id', 'title' => ts('Grant Type'), ), 'status_id' => array( 'name' => 'status_id', 'title' => ts('Grant Status'), ), 'amount_total' => array( 'name' => 'amount_total', 'title' => ts('Amount Requested'), 'type' => CRM_Utils_Type::T_MONEY, ), 'amount_granted' => array( 'name' => 'amount_granted', 'title' => ts('Amount Granted'), ), 'application_received_date' => array( 'name' => 'application_received_date', 'title' => ts('Application Received'), 'default' => TRUE, ), 'money_transfer_date' => array( 'name' => 'money_transfer_date', 'title' => ts('Money Transfer Date'), 'type' => CRM_Utils_Type::T_DATE, ), 'grant_due_date' => array( 'name' => 'grant_due_date', 'title' => ts('Grant Report Due'), 'type' => CRM_Utils_Type::T_DATE, ), 'decision_date' => array( 'name' => 'decision_date', 'title' => ts('Grant Decision Date'), 'type' => CRM_Utils_Type::T_DATE, ), 'rationale' => array( 'name' => 'rationale', 'title' => ts('Rationale'), ), 'grant_report_received' => array( 'name' => 'grant_report_received', 'title' => ts('Grant Report Received'), ), ), 'filters' => array( 'grant_type' => array( 'name' => 'grant_type_id', 'title' => ts('Grant Type'), 'operatorType' => CRM_Report_Form::OP_MULTISELECT, 'options' => CRM_Core_PseudoConstant::get('CRM_Grant_DAO_Grant', 'grant_type_id'), ), 'status_id' => array( 'name' => 'status_id', 'title' => ts('Grant Status'), 'type' => CRM_Utils_Type::T_INT, 'operatorType' => CRM_Report_Form::OP_MULTISELECT, 'options' => CRM_Core_PseudoConstant::get('CRM_Grant_DAO_Grant', 'status_id'), ), 'amount_granted' => array( 'title' => ts('Amount Granted'), 'operatorType' => CRM_Report_Form::OP_INT, ), 'amount_total' => array( 'title' => ts('Amount Requested'), 'operatorType' => CRM_Report_Form::OP_INT, ), 'application_received_date' => array( 'title' => ts('Application Received'), 'operatorType' => CRM_Report_Form::OP_DATE, 'type' => CRM_Utils_Type::T_DATE, ), 'money_transfer_date' => array( 'title' => ts('Money Transfer Date'), 'operatorType' => CRM_Report_Form::OP_DATE, 'type' => CRM_Utils_Type::T_DATE, ), 'grant_due_date' => array( 'title' => ts('Grant Report Due'), 'operatorType' => CRM_Report_Form::OP_DATE, 'type' => CRM_Utils_Type::T_DATE, ), 'decision_date' => array( 'title' => ts('Grant Decision Date'), 'operatorType' => CRM_Report_Form::OP_DATE, 'type' => CRM_Utils_Type::T_DATE, ), ), 'group_bys' => array( 'grant_type_id' => array( 'title' => ts('Grant Type'), ), 'status_id' => array( 'title' => ts('Grant Status'), ), 'amount_total' => array( 'title' => ts('Amount Requested'), ), 'amount_granted' => array( 'title' => ts('Amount Granted'), ), 'application_received_date' => array( 'title' => ts('Application Received Date'), ), 'money_transfer_date' => array( 'title' => ts('Money Transfer Date'), ), 'decision_date' => array( 'title' => ts('Grant Decision Date'), ), ), ), ); parent::__construct(); } public function select() { // @todo remove this override - seems to do nothing parent doesn't. $select = array(); $this->_columnHeaders = array(); foreach ($this->_columns as $tableName => $table) { if (array_key_exists('fields', $table)) { foreach ($table['fields'] as $fieldName => $field) { if (!empty($field['required']) || !empty($this->_params['fields'][$fieldName]) ) { $select[] = "{$field['dbAlias']} as {$tableName}_{$fieldName}"; $this->_columnHeaders["{$tableName}_{$fieldName}"]['title'] = $field['title']; $this->_columnHeaders["{$tableName}_{$fieldName}"]['type'] = CRM_Utils_Array::value('type', $field); } } } } $this->_select = "SELECT " . implode(', ', $select) . " "; } public function from() { $this->_from = " FROM civicrm_grant {$this->_aliases['civicrm_grant']} LEFT JOIN civicrm_contact {$this->_aliases['civicrm_contact']} ON ({$this->_aliases['civicrm_grant']}.contact_id = {$this->_aliases['civicrm_contact']}.id ) "; $this->joinAddressFromContact(); } public function where() { // @todo this function appears to do nothing more than parent, test & remove $clauses = array(); $this->_where = ''; foreach ($this->_columns as $tableName => $table) { if (array_key_exists('filters', $table)) { foreach ($table['filters'] as $fieldName => $field) { $clause = NULL; if (CRM_Utils_Array::value('type', $field) & CRM_Utils_Type::T_DATE) { $relative = CRM_Utils_Array::value("{$fieldName}_relative", $this->_params); $from = CRM_Utils_Array::value("{$fieldName}_from", $this->_params); $to = CRM_Utils_Array::value("{$fieldName}_to", $this->_params); if ($relative || $from || $to) { $clause = $this->dateClause($field['name'], $relative, $from, $to, $field['type']); } } else { $op = CRM_Utils_Array::value("{$fieldName}_op", $this->_params); if ($op) { $clause = $this->whereClause($field, $op, CRM_Utils_Array::value("{$fieldName}_value", $this->_params), CRM_Utils_Array::value("{$fieldName}_min", $this->_params), CRM_Utils_Array::value("{$fieldName}_max", $this->_params) ); } } if (!empty($clause)) { $clauses[] = $clause; } } } } if (!empty($clauses)) { $this->_where = "WHERE " . implode(' AND ', $clauses); } } public function groupBy() { // @todo this function appears to do nothing more than parent, test & remove $this->_groupBy = ""; if (!empty($this->_params['group_bys']) && is_array($this->_params['group_bys']) && !empty($this->_params['group_bys']) ) { foreach ($this->_columns as $tableName => $table) { if (array_key_exists('group_bys', $table)) { foreach ($table['group_bys'] as $fieldName => $field) { if (!empty($this->_params['group_bys'][$fieldName])) { $this->_groupBy[] = $field['dbAlias']; } } } } } if (!empty($this->_groupBy)) { $this->_groupBy = "ORDER BY " . implode(', ', $this->_groupBy) . ", {$this->_aliases['civicrm_contact']}.sort_name"; } else { $this->_groupBy = "ORDER BY {$this->_aliases['civicrm_contact']}.sort_name"; } } /** * Alter display of rows. * * Iterate through the rows retrieved via SQL and make changes for display purposes, * such as rendering contacts as links. * * @param array $rows * Rows generated by SQL, with an array for each row. */ public function alterDisplay(&$rows) { $entryFound = FALSE; foreach ($rows as $rowNum => $row) { // convert display name to links if (array_key_exists('civicrm_contact_sort_name', $row) && array_key_exists('civicrm_contact_id', $row) ) { $url = CRM_Utils_System::url('civicrm/contact/view', 'reset=1&cid=' . $row['civicrm_contact_id'], $this->_absoluteUrl ); $rows[$rowNum]['civicrm_contact_sort_name_link'] = $url; $rows[$rowNum]['civicrm_contact_sort_name_hover'] = ts("View contact details for this record."); $entryFound = TRUE; } if (array_key_exists('civicrm_grant_grant_type_id', $row)) { if ($value = $row['civicrm_grant_grant_type_id']) { $rows[$rowNum]['civicrm_grant_grant_type_id'] = CRM_Core_PseudoConstant::getLabel('CRM_Grant_DAO_Grant', 'grant_type_id', $value); } $entryFound = TRUE; } if (array_key_exists('civicrm_grant_status_id', $row)) { if ($value = $row['civicrm_grant_status_id']) { $rows[$rowNum]['civicrm_grant_status_id'] = CRM_Core_PseudoConstant::getLabel('CRM_Grant_DAO_Grant', 'status_id', $value); } $entryFound = TRUE; } if (array_key_exists('civicrm_grant_grant_report_received', $row)) { if ($value = $row['civicrm_grant_grant_report_received']) { if ($value == 1) { $value = 'Yes'; } else { $value = 'No'; } $rows[$rowNum]['civicrm_grant_grant_report_received'] = $value; } $entryFound = TRUE; } if (!$entryFound) { break; } } } }