From db96d968805c6a2c1c522491cd4d02834c984dd8 Mon Sep 17 00:00:00 2001 From: eileen Date: Thu, 28 Jul 2016 11:46:57 +1200 Subject: [PATCH] CRM-19137 - Add source as a filter on the contribution details report --- CRM/Report/Form/Contribute/Detail.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/CRM/Report/Form/Contribute/Detail.php b/CRM/Report/Form/Contribute/Detail.php index bb0d6e4a1a..e80dfb4362 100644 --- a/CRM/Report/Form/Contribute/Detail.php +++ b/CRM/Report/Form/Contribute/Detail.php @@ -29,8 +29,6 @@ * * @package CRM * @copyright CiviCRM LLC (c) 2004-2016 - * $Id$ - * */ class CRM_Report_Form_Contribute_Detail extends CRM_Report_Form { protected $_addressField = FALSE; @@ -213,6 +211,11 @@ class CRM_Report_Form_Contribute_Detail extends CRM_Report_Form { ), ), 'receive_date' => array('operatorType' => CRM_Report_Form::OP_DATE), + 'contribution_source' => array( + 'title' => ts('Source'), + 'name' => 'source', + 'type' => CRM_Utils_Type::T_STRING, + ), 'currency' => array( 'title' => 'Currency', 'operatorType' => CRM_Report_Form::OP_MULTISELECT, -- 2.25.1