}
// process pledge payment assoc w/ the contribution
- return self::processPledgePayments($formatted);
+ return $this->processPledgePayments($formatted);
}
$labels = [
'id' => 'Contribution ID',
}
// process pledge payment assoc w/ the contribution
- return self::processPledgePayments($formatted);
+ return $this->processPledgePayments($formatted);
}
// Using new Dedupe rule.
}
// process pledge payment assoc w/ the contribution
- return self::processPledgePayments($formatted);
+ return $this->processPledgePayments($formatted);
}
/**
*
* @return int
*/
- public function processPledgePayments(array $formatted) {
+ private function processPledgePayments(array $formatted) {
if (!empty($formatted['pledge_payment_id']) && !empty($formatted['pledge_id'])) {
//get completed status
$completeStatusID = CRM_Core_PseudoConstant::getKey('CRM_Contribute_BAO_Contribution', 'contribution_status_id', 'Completed');