From: Eileen Date: Mon, 3 Feb 2014 01:02:14 +0000 (+1300) Subject: CRM-14155 Participant Reports - add event custom fields as fields & filters X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=0f18adb908b8a6e033bb7d5e379fdd9a15946c83;p=civicrm-core.git CRM-14155 Participant Reports - add event custom fields as fields & filters --- diff --git a/CRM/Report/Form/Event/ParticipantListCount.php b/CRM/Report/Form/Event/ParticipantListCount.php index e0ceb65370..3c0d438004 100644 --- a/CRM/Report/Form/Event/ParticipantListCount.php +++ b/CRM/Report/Form/Event/ParticipantListCount.php @@ -38,7 +38,9 @@ class CRM_Report_Form_Event_ParticipantListCount extends CRM_Report_Form_Event { protected $_summary = NULL; protected $_customGroupExtends = array( - 'Participant'); + 'Participant', + 'Event', + ); public $_drilldownReport = array('event/income' => 'Link to Detail Report'); function __construct() { diff --git a/CRM/Report/Form/Event/ParticipantListing.php b/CRM/Report/Form/Event/ParticipantListing.php index 1abf7cf8d2..cc86cb6126 100644 --- a/CRM/Report/Form/Event/ParticipantListing.php +++ b/CRM/Report/Form/Event/ParticipantListing.php @@ -40,7 +40,7 @@ class CRM_Report_Form_Event_ParticipantListing extends CRM_Report_Form_Event { protected $_contribField = FALSE; protected $_lineitemField = FALSE; - protected $_customGroupExtends = array('Participant', 'Contact', 'Individual',); + protected $_customGroupExtends = array('Participant', 'Contact', 'Individual', 'Event'); public $_drilldownReport = array('event/income' => 'Link to Detail Report');