From: Jamie McClelland Date: Fri, 17 Nov 2017 21:19:55 +0000 (-0500) Subject: CRM-21449 - add location field to activity report. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=c02f870b5b8c3efe3756c675b14992f99a8080f0;p=civicrm-core.git CRM-21449 - add location field to activity report. --- 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,