From c02f870b5b8c3efe3756c675b14992f99a8080f0 Mon Sep 17 00:00:00 2001 From: Jamie McClelland Date: Fri, 17 Nov 2017 16:19:55 -0500 Subject: [PATCH] CRM-21449 - add location field to activity report. --- CRM/Report/Form/Activity.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CRM/Report/Form/Activity.php b/CRM/Report/Form/Activity.php index 2a0a6798c1..ede7d340c6 100644 --- a/CRM/Report/Form/Activity.php +++ b/CRM/Report/Form/Activity.php @@ -253,6 +253,10 @@ class CRM_Report_Form_Activity extends CRM_Report_Form { 'title' => ts('Duration'), 'type' => CRM_Utils_Type::T_INT, ), + 'location' => array( + 'title' => ts('Location'), + 'type' => CRM_Utils_Type::T_STRING, + ), 'details' => array( 'title' => ts('Activity Details'), ), @@ -279,6 +283,10 @@ class CRM_Report_Form_Activity extends CRM_Report_Form { 'operatorType' => CRM_Report_Form::OP_MULTISELECT, 'options' => CRM_Core_PseudoConstant::activityStatus(), ), + 'location' => array( + 'title' => ts('Location'), + 'type' => CRM_Utils_Type::T_TEXT, + ), 'details' => array( 'title' => ts('Activity Details'), 'type' => CRM_Utils_Type::T_TEXT, -- 2.25.1