From e197315dd501fc752b5edf92fe84bc1c31d35102 Mon Sep 17 00:00:00 2001 From: Jamie McClelland Date: Mon, 5 Jan 2015 12:22:58 -0500 Subject: [PATCH] CRM-15783 - add location field to activity report ---------------------------------------- * CRM-15783: Activity report would be more useful with the location field exposed https://issues.civicrm.org/jira/browse/CRM-15783 --- 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 f46b8639ef..787521fac3 100644 --- a/CRM/Report/Form/Activity.php +++ b/CRM/Report/Form/Activity.php @@ -229,6 +229,10 @@ class CRM_Report_Form_Activity extends CRM_Report_Form { array('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'), ) @@ -240,6 +244,10 @@ class CRM_Report_Form_Activity extends CRM_Report_Form { ), 'activity_subject' => array('title' => ts('Activity Subject')), + 'location' => + array('title' => ts('Location'), + 'type' => CRM_Utils_Type::T_TEXT, + ), 'activity_type_id' => array('title' => ts('Activity Type'), 'operatorType' => CRM_Report_Form::OP_MULTISELECT, -- 2.25.1