Skip to content

Commit

Permalink
Merge pull request civicrm#11296 from jmcclelland/CRM-21449
Browse files Browse the repository at this point in the history
CRM-21449 - add location field to activity report.
  • Loading branch information
mlutfy authored and sluc23 committed Jan 10, 2018
2 parents cedce1d + 4f0291e commit 6bfcad1
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions CRM/Report/Form/Activity.php
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,10 @@ public function __construct() {
'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'),
),
Expand All @@ -279,6 +283,10 @@ public function __construct() {
'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,
Expand Down

0 comments on commit 6bfcad1

Please sign in to comment.