Skip to content
Snippets Groups Projects
Commit 6cf76c24 authored by jaapjansma's avatar jaapjansma
Browse files

Added data source Contribution (withouth Soft Contribution)

parent ff58407e
No related branches found
Tags 1.23.4
No related merge requests found
# Version 1.61 (not yet released)
* Improved on !98 filter parameter for SQL Table sources.
* Improved on !98 filter parameter for SQL Table sources.
* Added data source Contribution (withouth Soft Contribution)
# Version 1.60.2
......
......@@ -123,7 +123,8 @@ class Factory {
$this->addDataSource('phone', new Definition('Civi\DataProcessor\Source\Contact\PhoneSource'), E::ts('Phone'));
$this->addDataSource('website', new Definition('Civi\DataProcessor\Source\Contact\WebsiteSource'), E::ts('Website'));
$this->addDataSource('campaign', new Definition('Civi\DataProcessor\Source\Campaign\CampaignSource'), E::ts('Campaign'));
$this->addDataSource('contribution', new Definition('Civi\DataProcessor\Source\Contribution\ContributionSource'), E::ts('Contribution'));
$this->addDataSource('contribution', new Definition('Civi\DataProcessor\Source\Contribution\ContributionSource'), E::ts('Contribution (with Soft Contribution)'));
$this->addDataSource('contribution_without_softcontrib', new Definition('Civi\DataProcessor\Source\Contribution\ContributionWithoutSoftContributionsSource'), E::ts('Contribution (without Soft Contribution)'));
$this->addDataSource('contribution_recur', new Definition('Civi\DataProcessor\Source\Contribution\ContributionRecurSource'), E::ts('Recurring Contribution'));
$this->addDataSource('case', new Definition('Civi\DataProcessor\Source\Cases\CaseSource'), E::ts('Case'));
$this->addDataSource('relationship', new Definition('Civi\DataProcessor\Source\Contact\RelationshipSource'), E::ts('Relationship'));
......
<?php
/**
* @author Jaap Jansma <jaap.jansma@civicoop.org>
* @license AGPL-3.0
*/
namespace Civi\DataProcessor\Source\Contribution;
use Civi\DataProcessor\Source\AbstractCivicrmEntitySource;
use CRM_Dataprocessor_ExtensionUtil as E;
class ContributionWithoutSoftContributionsSource extends AbstractCivicrmEntitySource {
/**
* Returns the entity name
*
* @return String
*/
protected function getEntity() {
return 'Contribution';
}
/**
* Returns the table name of this entity
*
* @return String
*/
protected function getTable() {
return 'civicrm_contribution';
}
/**
* Returns the default configuration for this data source
*
* @return array
*/
public function getDefaultConfiguration() {
return array(
'filter' => array(
'is_test' => array (
'op' => '=',
'value' => '0',
)
)
);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment