From 17da84f5358c41f6191ea3b6f0e8b2172c021f81 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Frank=20J=2E=20G=C3=B3mez?= Date: Sun, 1 Mar 2015 15:13:08 -0500 Subject: [PATCH] CRM-15965: Updated built-in custom reports to be consistent with changes to CRM_Contact_Form_Search_Interface (namely the addition of the buildTaskList method). --- CRM/Contact/Form/Search/Custom/ActivitySearch.php | 2 +- CRM/Contact/Form/Search/Custom/ContribSYBNT.php | 2 +- CRM/Contact/Form/Search/Custom/ContributionAggregate.php | 2 +- CRM/Contact/Form/Search/Custom/EmployerListing.php | 2 +- CRM/Contact/Form/Search/Custom/FullText.php | 2 +- CRM/Contact/Form/Search/Custom/TagContributions.php | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CRM/Contact/Form/Search/Custom/ActivitySearch.php b/CRM/Contact/Form/Search/Custom/ActivitySearch.php index 8b774ad1dd..265452b5ac 100644 --- a/CRM/Contact/Form/Search/Custom/ActivitySearch.php +++ b/CRM/Contact/Form/Search/Custom/ActivitySearch.php @@ -32,7 +32,7 @@ * $Id$ * */ -class CRM_Contact_Form_Search_Custom_ActivitySearch implements CRM_Contact_Form_Search_Interface { +class CRM_Contact_Form_Search_Custom_ActivitySearch extends CRM_Contact_Form_Search_Custom_Base implements CRM_Contact_Form_Search_Interface { protected $_formValues; diff --git a/CRM/Contact/Form/Search/Custom/ContribSYBNT.php b/CRM/Contact/Form/Search/Custom/ContribSYBNT.php index fc698bb688..b5b86470c5 100644 --- a/CRM/Contact/Form/Search/Custom/ContribSYBNT.php +++ b/CRM/Contact/Form/Search/Custom/ContribSYBNT.php @@ -32,7 +32,7 @@ * $Id$ * */ -class CRM_Contact_Form_Search_Custom_ContribSYBNT implements CRM_Contact_Form_Search_Interface { +class CRM_Contact_Form_Search_Custom_ContribSYBNT extends CRM_Contact_Form_Search_Custom_Base implements CRM_Contact_Form_Search_Interface { protected $_formValues; public $_permissionedComponent; diff --git a/CRM/Contact/Form/Search/Custom/ContributionAggregate.php b/CRM/Contact/Form/Search/Custom/ContributionAggregate.php index 9c953cf033..d743b12673 100644 --- a/CRM/Contact/Form/Search/Custom/ContributionAggregate.php +++ b/CRM/Contact/Form/Search/Custom/ContributionAggregate.php @@ -32,7 +32,7 @@ * $Id$ * */ -class CRM_Contact_Form_Search_Custom_ContributionAggregate implements CRM_Contact_Form_Search_Interface { +class CRM_Contact_Form_Search_Custom_ContributionAggregate extends CRM_Contact_Form_Search_Custom_Base implements CRM_Contact_Form_Search_Interface { protected $_formValues; public $_permissionedComponent; diff --git a/CRM/Contact/Form/Search/Custom/EmployerListing.php b/CRM/Contact/Form/Search/Custom/EmployerListing.php index 79b5a77b4e..64978524c2 100644 --- a/CRM/Contact/Form/Search/Custom/EmployerListing.php +++ b/CRM/Contact/Form/Search/Custom/EmployerListing.php @@ -32,7 +32,7 @@ * $Id$ * */ -class CRM_Contact_Form_Search_Custom_EmployerListing implements CRM_Contact_Form_Search_Interface { +class CRM_Contact_Form_Search_Custom_EmployerListing extends CRM_Contact_Form_Search_Custom_Base implements CRM_Contact_Form_Search_Interface { protected $_formValues; diff --git a/CRM/Contact/Form/Search/Custom/FullText.php b/CRM/Contact/Form/Search/Custom/FullText.php index 065e9b2c6c..4c89594755 100644 --- a/CRM/Contact/Form/Search/Custom/FullText.php +++ b/CRM/Contact/Form/Search/Custom/FullText.php @@ -32,7 +32,7 @@ * $Id$ * */ -class CRM_Contact_Form_Search_Custom_FullText implements CRM_Contact_Form_Search_Interface { +class CRM_Contact_Form_Search_Custom_FullText extends CRM_Contact_Form_Search_Custom_Base implements CRM_Contact_Form_Search_Interface { const LIMIT = 10; diff --git a/CRM/Contact/Form/Search/Custom/TagContributions.php b/CRM/Contact/Form/Search/Custom/TagContributions.php index 91e09f1355..34591a85ac 100644 --- a/CRM/Contact/Form/Search/Custom/TagContributions.php +++ b/CRM/Contact/Form/Search/Custom/TagContributions.php @@ -32,7 +32,7 @@ * $Id$ * */ -class CRM_Contact_Form_Search_Custom_TagContributions implements CRM_Contact_Form_Search_Interface { +class CRM_Contact_Form_Search_Custom_TagContributions extends CRM_Contact_Form_Search_Custom_Base implements CRM_Contact_Form_Search_Interface { protected $_formValues; public $_permissionedComponent; -- 2.25.1