X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FReport%2FForm%2FMailing%2FBounce.php;h=47d9603f9c0bd1118afcea2356449205fdb09b90;hb=16e2e80cfacf49c5fcd1c47cb77ed35593aa0323;hp=40c397e577de826d414aa3464ab2d536946a8d31;hpb=af28befddd8f5e9c91a0560138fbba2654c0acc2;p=civicrm-core.git diff --git a/CRM/Report/Form/Mailing/Bounce.php b/CRM/Report/Form/Mailing/Bounce.php index 40c397e577..47d9603f9c 100644 --- a/CRM/Report/Form/Mailing/Bounce.php +++ b/CRM/Report/Form/Mailing/Bounce.php @@ -2,9 +2,9 @@ /* +--------------------------------------------------------------------+ - | CiviCRM version 4.3 | + | CiviCRM version 4.5 | +--------------------------------------------------------------------+ - | Copyright CiviCRM LLC (c) 2004-2013 | + | Copyright CiviCRM LLC (c) 2004-2014 | +--------------------------------------------------------------------+ | This file is a part of CiviCRM. | | | @@ -29,7 +29,7 @@ /** * * @package CRM - * @copyright CiviCRM LLC (c) 2004-2013 + * @copyright CiviCRM LLC (c) 2004-2014 * $Id$ * */ @@ -52,6 +52,12 @@ class CRM_Report_Form_Mailing_Bounce extends CRM_Report_Form { 'pieChart' => 'Pie Chart', ); + /** + * + */ + /** + * + */ function __construct() { $this->_columns = array(); @@ -191,20 +197,7 @@ class CRM_Report_Form_Mailing_Bounce extends CRM_Report_Form { 'grouping' => 'contact-fields', ); - $this->_columns['civicrm_group'] = array( - 'dao' => 'CRM_Contact_DAO_Group', - 'alias' => 'cgroup', - 'filters' => array( - 'gid' => array( - 'name' => 'group_id', - 'title' => ts('Group'), - 'operatorType' => CRM_Report_Form::OP_MULTISELECT, - 'group' => TRUE, - 'options' => CRM_Core_PseudoConstant::group(), - ), - ), - ); - + $this->_groupFilter = TRUE; $this->_tagFilter = TRUE; parent::__construct(); } @@ -221,9 +214,7 @@ class CRM_Report_Form_Mailing_Bounce extends CRM_Report_Form { foreach ($this->_columns as $tableName => $table) { if (array_key_exists('fields', $table)) { foreach ($table['fields'] as $fieldName => $field) { - if (CRM_Utils_Array::value('required', $field) || - CRM_Utils_Array::value($fieldName, $this->_params['fields']) - ) { + if (!empty($field['required']) || !empty($this->_params['fields'][$fieldName])) { if ($tableName == 'civicrm_email') { $this->_emailField = TRUE; } @@ -241,7 +232,7 @@ class CRM_Report_Form_Mailing_Bounce extends CRM_Report_Form { } - if (CRM_Utils_Array::value('charts', $this->_params)) { + if (!empty($this->_params['charts'])) { $select[] = "COUNT({$this->_aliases['civicrm_mailing_event_bounce']}.id) as civicrm_mailing_bounce_count"; $this->_columnHeaders["civicrm_mailing_bounce_count"]['title'] = ts('Bounce Count'); } @@ -249,6 +240,13 @@ class CRM_Report_Form_Mailing_Bounce extends CRM_Report_Form { $this->_select = "SELECT " . implode(', ', $select) . " "; } + /** + * @param $fields + * @param $files + * @param $self + * + * @return array + */ static function formRule($fields, $files, $self) { $errors = $grouping = array(); return $errors; @@ -290,7 +288,7 @@ class CRM_Report_Form_Mailing_Bounce extends CRM_Report_Form { } function groupBy() { - if (CRM_Utils_Array::value('charts', $this->_params)) { + if (!empty($this->_params['charts'])) { $this->_groupBy = " GROUP BY {$this->_aliases['civicrm_mailing']}.id"; } else { @@ -314,6 +312,9 @@ class CRM_Report_Form_Mailing_Bounce extends CRM_Report_Form { $this->endPostProcess($rows); } + /** + * @param $rows + */ function buildChart(&$rows) { if (empty($rows)) { return; @@ -334,6 +335,9 @@ class CRM_Report_Form_Mailing_Bounce extends CRM_Report_Form { $this->assign('chartType', $this->_params['charts']); } + /** + * @return array + */ function bounce_type() { $data = array('' => '--Please Select--'); @@ -349,6 +353,9 @@ class CRM_Report_Form_Mailing_Bounce extends CRM_Report_Form { return $data; } + /** + * @param $rows + */ function alterDisplay(&$rows) { // custom code to alter rows $entryFound = FALSE;